play method

  1. @override
Future<void> play()
override

Starts playing the video.

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 itself is totally finished.

Implementation

@override
play() async {
  super.play();
  debugPrint('[SN] start play!');
}