stopPiP method

Future<void> stopPiP()

Detiene el modo Picture-in-Picture

Implementation

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