I want to play videos on my Flutter application. So I have implemented flutter_inappwebview and gave it a initial URL like this:
initialUrlRequest: URLRequest(
url: Uri.parse(state.selectedOption!.url!)),
It does show video and play it well. But I have no control on this video. For example I want to implement "Skip Intro", "Continue Where i Left Off" features but I cannot do that because I dont have control on video player. Since I want to show embedded videos only, I cannot use video_player package. It doesn't support embedded videos (as far as I know). How can How can I get more control on embedded video?