We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In firebase_auth_repository.dart, authRepository watch firebaseAuthProvider.
firebase_auth_repository.dart
authRepository
firebaseAuthProvider
@Riverpod(keepAlive: true) FirebaseAuth firebaseAuth(FirebaseAuthRef ref) { return FirebaseAuth.instance; } @Riverpod(keepAlive: true) AuthRepository authRepository(AuthRepositoryRef ref) { return AuthRepository(ref.watch(firebaseAuthProvider)); }
Llistening to FirebaseAuth.instance using ref.watch. This implies that there could be changes FirebaseAuth.instance itself.
FirebaseAuth.instance
ref.watch
Does FirebaseAuth.instance actually change automatically? FirebaseAuth.instance implements static get, object id will not change.
static get
I would like to know if there are cases where performing operations with Firebase Authentication results in changes to FirebaseAuth.instance.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
firebase_auth_repository.dart
,authRepository
watchfirebaseAuthProvider
.Llistening to
FirebaseAuth.instance
usingref.watch
.This implies that there could be changes FirebaseAuth.instance itself.
Does
FirebaseAuth.instance
actually change automatically?FirebaseAuth.instance
implementsstatic get
, object id will not change.I would like to know if there are cases where performing operations with Firebase Authentication results in changes to FirebaseAuth.instance.
The text was updated successfully, but these errors were encountered: