getRelatedSongs method

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

Implementation

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