isSupported method
Check if Picture in Picture is supported.
Returns Whether Picture in Picture is supported.
Implementation
@override
Future<bool> isSupported() async {
final result = await methodChannel.invokeMethod<bool>('isSupported', null);
return result ?? false;
}