EmailForm constructor

const EmailForm({
  1. Key? key,
  2. AuthAction? action,
  3. FirebaseAuth? auth,
  4. EmailAuthProvider? provider,
  5. EmailFormSubmitCallback? onSubmit,
  6. String? email,
  7. String? actionButtonLabelOverride,
  8. EmailFormStyle? style,
  9. bool showPasswordVisibilityToggle = false,
})

An email form widget.

Implementation

const EmailForm({
  super.key,
  this.action,
  this.auth,
  this.provider,
  this.onSubmit,
  this.email,
  this.actionButtonLabelOverride,
  this.style,
  this.showPasswordVisibilityToggle = false,
});