spotube/lib/provider/spotify/artist/artist.dart

11 lines
224 B
Dart

part of '../spotify.dart';
final artistProvider =
FutureProvider.autoDispose.family((ref, String artistId) {
ref.cacheFor();
final spotify = ref.watch(spotifyProvider);
return spotify.artists.get(artistId);
});