enablePictureInPicture method
Enables PiP mode.
Implementation
@override
Future<void> enablePictureInPicture(int? textureId, double? top, double? left,
double? width, double? height) async {
return _channel.invokeMethod<void>(
'enablePictureInPicture',
<String, dynamic>{
'textureId': textureId,
'top': top,
'left': left,
'width': width,
'height': height,
},
);
}