isPipAvailable method

  1. @Deprecated('use [HMSPIPAndroidController] class')
Future<bool> isPipAvailable()

Method to check whether pip mode is available for the current device

Refer PIP mode guide here

Implementation

@Deprecated('use [HMSPIPAndroidController] class')
Future<bool> isPipAvailable() async {
  final bool? result =
      await PlatformService.invokeMethod(PlatformMethod.isPipAvailable);
  return result ?? false;
}