ForgotPasswordView constructor

const ForgotPasswordView({
  1. Key? key,
  2. FirebaseAuth? auth,
  3. String? email,
  4. ActionCodeSettings? actionCodeSettings,
  5. WidgetBuilder? subtitleBuilder,
  6. WidgetBuilder? footerBuilder,
})

A view that could be used to build a custom ForgotPasswordScreen.

Implementation

const ForgotPasswordView({
  super.key,
  this.auth,
  this.email,
  this.actionCodeSettings,
  this.subtitleBuilder,
  this.footerBuilder,
});