isPipAvailable property

Future<bool> get isPipAvailable

Whether this device supports PIP mode.

Implementation

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