isSupported method

  1. @override
Future<bool> isSupported()
override

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;
}