mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-05-08 16:24:36 +00:00
8 lines
189 B
Dart
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);
|
|
});
|