play method

Future<void> play()

Starts playing the content.

If the video is at the end, this method starts playing from the beginning.

This method returns a future that completes as soon as the "play" command has been sent to the platform, not when playback has started.

Implementation

Future<void> play() async {
  await _videoPlayerPlatform.play(textureId);
}