part of '../spotify.dart'; final relatedArtistsProvider = FutureProvider.family, String>((ref, artistId) async { final spotify = ref.watch(spotifyProvider); final artists = await spotify.artists.relatedArtists(artistId); return artists.toList(); });