getRelatedArtists method

  1. @Deprecated('Use relatedArtists instead')
Future<Iterable<Artist>> getRelatedArtists(
  1. String artistId
)

Returns related artists based on the artist with its artistId

Implementation

@Deprecated('Use relatedArtists instead')
Future<Iterable<Artist>> getRelatedArtists(String artistId) async =>
    relatedArtists(artistId);