isPictureInPictureSupported method

Future<bool> isPictureInPictureSupported()

isPictureInPictureSupported

Implementation

Future<bool> isPictureInPictureSupported() async {
  bool ret = await engineInstanceMethodChannel
      .invokeMethod('isPictureInPictureSupported');
  return ret;
}