isPipActivated property

Future<bool> get isPipActivated

Whether the app is currently in PIP mode.

Implementation

static Future<bool> get isPipActivated async {
  final bool? isActivated = await _channel.invokeMethod('isPipActivated');
  return isActivated ?? false;
}