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