pause method

Future<void> pause()

Pausa el video

Implementation

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