sendPasswordResetEmail method

Future<void> sendPasswordResetEmail(
  1. String email, [
  2. ActionCodeSettings? actionCodeSettings
])

Triggers the Firebase Authentication backend to send a password-reset email to the given email address, which must correspond to an existing user of your app.

Implementation

Future<void> sendPasswordResetEmail(
  String email, [
  ActionCodeSettings? actionCodeSettings,
]) {
  throw UnimplementedError('sendPasswordResetEmail() is not implemented');
}