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