enablePictureInPicture method

Future<void> enablePictureInPicture({
  1. double? top,
  2. double? left,
  3. double? width,
  4. double? height,
})

Implementation

Future<void> enablePictureInPicture(
    {double? top, double? left, double? width, double? height}) async {
  await _videoPlayerPlatform.enablePictureInPicture(
      textureId, top, left, width, height);
}