isPiPShown method
Check if the PiP is shown.
Implementation
Future<bool> isPiPShown() async {
final result =
await FWMethodChannelUtil.getNavigatorMethodChannel().invokeMethod(
NavigatorNativeMethodName.isPiPShown.name,
);
return result;
}