getVideoAspectRatio method

Future<String?> getVideoAspectRatio()

Returns video aspect ratio in string format

This is different from the aspectRatio property in video value "16:9"

Implementation

Future<String?> getVideoAspectRatio() async {
  _throwIfNotInitialized('getVideoAspectRatio');
  return vlcPlayerPlatform.getVideoAspectRatio(_viewId);
}