exitPipMode method
Exits PiP mode.
Implementation
@override
Future<bool> exitPipMode() async {
try {
final result = await methodChannel.invokeMethod<bool>('exitPipMode');
return result ?? false;
} on PlatformException catch (e) {
debugPrint('Error exiting PiP mode: ${e.message}');
return false;
}
}