isPipActive method

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

Method to check whether pip mode is active currently

Refer PIP mode guide here

Implementation

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