getVideoStreams method

Future<List<Map<String, dynamic>>> getVideoStreams(
  1. String videoId, {
  2. String quality = '1080p',
})

Gets video streams for a YouTube video

Implementation

Future<List<Map<String, dynamic>>> getVideoStreams(
  String videoId, {
  String quality = '1080p',
}) {
  throw UnimplementedError('getVideoStreams() has not been implemented.');
}