setAspectRatio method
Set new video aspect ratio.
aspect new video aspect-ratio or NULL to reset to default
Implementation
void setAspectRatio(String aspect) async {
await _ensureInitialized();
if (_isNeedDisposed) return;
await _vlcApi.setAspectRatio(aspect, _textureId);
}