isPiPShown method

Future<bool> isPiPShown()

Check if the PiP is shown.

Implementation

Future<bool> isPiPShown() async {
  final result =
      await FWMethodChannelUtil.getNavigatorMethodChannel().invokeMethod(
    NavigatorNativeMethodName.isPiPShown.name,
  );
  return result;
}