pause method
Pausa el video
Implementation
Future<void> pause() async {
try {
await _methodChannel.invokeMethod('pause');
} catch (e) {
debugPrint('[NativeVideoPlayer] Error al pausar: $e');
rethrow;
}
}
Pausa el video
Future<void> pause() async {
try {
await _methodChannel.invokeMethod('pause');
} catch (e) {
debugPrint('[NativeVideoPlayer] Error al pausar: $e');
rethrow;
}
}