mirror of
https://github.com/KRTirtho/spotube.git
synced 2026-05-09 08:44:36 +00:00
7 lines
159 B
Dart
7 lines
159 B
Dart
part of '../spotify.dart';
|
|
|
|
final meProvider = FutureProvider<User>((ref) async {
|
|
final spotify = ref.watch(spotifyProvider);
|
|
return spotify.me.get();
|
|
});
|