getPipView method
Get the Picture in Picture view. Only available on iOS.
Returns The Picture in Picture view.
Implementation
@override
Future<int> getPipView() async {
if (Platform.isIOS) {
final result = await methodChannel.invokeMethod<int>('getPipView', null);
return result ?? 0;
}
return Future.value(0);
}