spotube/lib/provider/spotify/playlist/playlist.dart
2024-03-15 21:38:43 +06:00

9 lines
224 B
Dart

part of '../spotify.dart';
final playlistProvider = FutureProvider.family<Playlist, String>(
(ref, playlistId) async {
final spotify = ref.watch(spotifyProvider);
return spotify.playlists.get(playlistId);
},
);