streamRelatedSongs method

Stream<Map<String, dynamic>> streamRelatedSongs({
  1. required String songName,
  2. required String artistName,
  3. int limit = 100,
  4. String thumbQuality = 'VERY_HIGH',
  5. String audioQuality = 'HIGH',
  6. bool includeAudioUrl = true,
  7. bool includeAlbumArt = true,
})

Implementation

Stream<Map<String, dynamic>> streamRelatedSongs({
  required String songName,
  required String artistName,
  int limit = 100,
  String thumbQuality = 'VERY_HIGH',
  String audioQuality = 'HIGH',
  bool includeAudioUrl = true,
  bool includeAlbumArt = true,
}) {
  throw UnimplementedError('streamRelatedSongs() has not been implemented.');
}