isPictureInPictureEnabled method

  1. @override
Future<bool?> isPictureInPictureEnabled(
  1. int? textureId
)
override

Implementation

@override
Future<bool?> isPictureInPictureEnabled(int? textureId) {
  return _channel.invokeMethod<bool>(
    'isPictureInPictureSupported',
    <String, dynamic>{
      'textureId': textureId,
    },
  );
}