spotube/lib/provider/spotify/artist/artist.dart
2024-03-13 19:42:31 +06:00

8 lines
189 B
Dart

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