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