getAudioStreams method

Future<List<Map<String, dynamic>>> getAudioStreams(
  1. String videoId, {
  2. int bitrate = 320,
  3. String? codec,
})

Gets audio streams for a YouTube video

Implementation

Future<List<Map<String, dynamic>>> getAudioStreams(
  String videoId, {
  int bitrate = 320,
  String? codec,
}) {
  throw UnimplementedError('getAudioStreams() has not been implemented.');
}