setVideoScale method

Future<void> setVideoScale(
  1. double videoScale
)

scale - the video scale value Set video scale

Implementation

Future<void> setVideoScale(double videoScale) async {
  _throwIfNotInitialized('setVideoScale');
  value = value.copyWith(videoScale: videoScale);
  return await vlcPlayerPlatform.setVideoScale(_viewId, videoScale);
}