getAllQualityVideo method
Implementation
Future<List<String>> getAllQualityVideo() async {
List<String> videoQuality = <String>[];
try {
videoQuality = (await _channel.invokeMethod('getAllQualityVideo')).cast<String>();
return videoQuality;
} on PlatformException catch (e) {
logger.e("videoQuality error: ${e.details} - ${e.message}");
}
return videoQuality;
}