startPiP method
Inicia el modo Picture-in-Picture
Implementation
Future<void> startPiP() async {
try {
await _methodChannel.invokeMethod('startPiP');
} catch (e) {
debugPrint('[NativeVideoPlayer] Error al iniciar PiP: $e');
rethrow;
}
}