mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-05-08 16:24:36 +00:00
11 lines
224 B
Dart
11 lines
224 B
Dart
part of '../spotify.dart';
|
|
|
|
final trackProvider =
|
|
FutureProvider.autoDispose.family<Track, String>((ref, id) async {
|
|
ref.cacheFor();
|
|
|
|
final spotify = ref.watch(spotifyProvider);
|
|
|
|
return spotify.tracks.get(id);
|
|
});
|