mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-05-09 00:34:36 +00:00
9 lines
224 B
Dart
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);
|
|
},
|
|
);
|