Use the sendPasswordResetEmail method to send a password reset email to the user, allowing them to reset their password.
sendPasswordResetEmail
await FirebaseApp.firebaseAuth?.sendPasswordResetEmail(email);
email (String): The email address of the user who needs to reset their password.
String
void: This method does not return a value.
This method sends a password reset email to the specified email address, enabling the user to reset their password.
Last updated 1 year ago