isPaused method
Implementation
@override
Future<bool?> isPaused(String playerReference) async {
try {
return await methodChannel.invokeMethod<bool>('isPaused', {'playerReference': playerReference});
} on PlatformException catch (e) {
debugPrint('Failed to check if video is paused: ${e.message}');
rethrow;
}
}