mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
7 lines
180 B
Dart
7 lines
180 B
Dart
part of '../spotify.dart';
|
|
|
|
final meProvider = FutureProvider<User>((ref) async {
|
|
final spotify = ref.watch(spotifyProvider);
|
|
return spotify.invoke((api) => api.me.get());
|
|
});
|