streamArtistAlbums method

Stream<Map<String, dynamic>> streamArtistAlbums({
  1. required String artistName,
  2. int maxAlbums = 5,
  3. int maxSongsPerAlbum = 10,
  4. int maxWorkers = 5,
  5. String thumbQuality = 'VERY_HIGH',
  6. String audioQuality = 'HIGH',
  7. bool includeAudioUrl = true,
  8. bool includeAlbumArt = true,
})

Implementation

Stream<Map<String, dynamic>> streamArtistAlbums({
  required String artistName,
  int maxAlbums = 5,
  int maxSongsPerAlbum = 10,
  int maxWorkers = 5,
  String thumbQuality = 'VERY_HIGH',
  String audioQuality = 'HIGH',
  bool includeAudioUrl = true,
  bool includeAlbumArt = true,
}) {
  throw UnimplementedError('streamArtistAlbums() has not been implemented.');
}