spotube/lib/provider/spotify/category/genres.dart
2024-03-13 19:59:50 +06:00

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();
});