next method
Implementation
@override
Future<void> next(String playerReference) async {
try {
await methodChannel.invokeMethod('next', {'playerReference': playerReference});
} on PlatformException catch (e) {
debugPrint('Failed to play next video: ${e.message}');
rethrow;
}
}