getVideoScale method

Future<double?> getVideoScale()

Returns video scale

Implementation

Future<double?> getVideoScale() async {
  _throwIfNotInitialized('getVideoScale');
  var videoScale = await vlcPlayerPlatform.getVideoScale(_viewId);
  value = value.copyWith(videoScale: videoScale);
  return videoScale;
}