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 requesting the password reset.
String
void: This method does not return a value.
This method sends an email to the user with instructions on how to reset their password.
Last updated 1 year ago