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