videoWidth property

Future<int> get videoWidth

Get the video width/height, it should be obtained after onPrepared.

Implementation

Future<int> get videoWidth async {
  return await engineInstanceMethodChannel.invokeMethod('getVideoWidth');
}