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