stop method

Future<void> stop()

stops the video.

Implementation

Future<void> stop() async {
  _throwIfNotInitialized('stop');
  await vlcPlayerPlatform.stop(_viewId);
}