mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-05-08 16:24:36 +00:00
7 lines
219 B
Dart
7 lines
219 B
Dart
part of '../spotify.dart';
|
|
|
|
final categoryGenresProvider = FutureProvider<List<String>>((ref) async {
|
|
final customSpotify = ref.watch(customSpotifyEndpointProvider);
|
|
return await customSpotify.listGenreSeeds();
|
|
});
|