play method

Future<void> play()

Resumes the paused video.

Implementation

Future<void> play() async {
  await _methodChannel.invokeMethod("play");
  return Future.value();
}