isAutoPipAvailable property
Whether the device supports AutoEnter PIP parameter (Android S)
Implementation
static Future<bool> get isAutoPipAvailable async {
final bool? isAvailable = await _channel.invokeMethod('isAutoPipAvailable');
return isAvailable ?? false;
}