getQuality method

Future<int?> getQuality()

Returns the current resolution of the video

Implementation

Future<int?> getQuality() async {
  return await _methodChannel.invokeMethod<int>('getQuality');
}