setVideoAspectRatio method
aspectRatio - the video aspect ratio like "16:9"
Set video aspect ratio
Implementation
Future<void> setVideoAspectRatio(String aspectRatio) async {
_throwIfNotInitialized('setVideoAspectRatio');
return vlcPlayerPlatform.setVideoAspectRatio(_viewId, aspectRatio);
}