Update Password

Use the updatePassword method to update the password of the currently authenticated user.

Method

final user = FirebaseApp.firebaseAuth?.updatePassword(newPassword);

Parameters

  • newPassword (String): The new password for the user.

Return

  • user: The current user is returned.

This method allows the currently authenticated user to update their password.

Last updated