Apply Action Code

Use the applyActionCode method to apply a verification code sent to a user's email.

Method

final success = await FirebaseApp.firebaseAuth?.applyActionCode(actionCode);

Parameters

  • actionCode (String): The verification code sent to the user's email.

Return

  • bool: Returns true if the action code was successfully applied.

This method verifies and applies the action code sent to the user's email, confirming the action associated with the code.

Last updated