userStream function
Implementation
@riverpod
Stream<User?> userStream(UserStreamRef ref) {
final authServiceNotifier = ref.watch(firebaseAuthServiceProvider().notifier);
return authServiceNotifier.userChanges();
}
@riverpod
Stream<User?> userStream(UserStreamRef ref) {
final authServiceNotifier = ref.watch(firebaseAuthServiceProvider().notifier);
return authServiceNotifier.userChanges();
}