stop method

Future<void> stop({
  1. required int id,
})

Stop the current video.

Implementation

Future<void> stop({required int id}) {
  throw UnimplementedError('stop() has not been implemented.');
}