9 lines
261 B
Dart
9 lines
261 B
Dart
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import '../data/profile_service.dart';
|
|
import '../models/profile_user.dart';
|
|
|
|
final currentUserProvider = FutureProvider<ProfileUser>((ref) async {
|
|
return ref.read(profileServiceProvider).getMe();
|
|
});
|