Reload user
Use the reloadUser
method to refresh the current user's information from the Firebase backend.
Method
final user = await FirebaseApp.firebaseAuth?.reloadUser();
Parameters
None
Return
User?: The updated
User
instance representing the current user.
This method reloads the current user's information from the Firebase backend, returning the updated user data.
Last updated