reauthenticateWithCredential method

Future<UserCredentialPlatform> reauthenticateWithCredential(
  1. AuthCredential credential
)

Re-authenticates a user using a fresh credential.

Use before operations such as User.updatePassword that require tokens from recent sign-in attempts.

A FirebaseAuthException maybe thrown with the following error code:

  • user-mismatch:
  • Thrown if the credential given does not correspond to the user.
  • user-not-found:
  • Thrown if the credential given does not correspond to any existing user.
  • invalid-credential:
  • Thrown if the provider's credential is not valid. This can happen if it has already expired when calling link, or if it used invalid token(s). See the Firebase documentation for your provider, and make sure you pass in the correct parameters to the credential method.
  • invalid-email:
  • Thrown if the email used in a EmailAuthProvider.credential is invalid.
  • wrong-password:
  • Thrown if the password used in a EmailAuthProvider.credential is not correct or when the user associated with the email does not have a password.
  • invalid-verification-code:
  • Thrown if the credential is a PhoneAuthProvider.credential and the verification code of the credential is not valid.
  • invalid-verification-id:
  • Thrown if the credential is a PhoneAuthProvider.credential and the verification ID of the credential is not valid.

Implementation

Future<UserCredentialPlatform> reauthenticateWithCredential(
    AuthCredential credential) {
  throw UnimplementedError(
      'reauthenticateWithCredential() is not implemented');
}