EmailSignUpDialog constructor

const EmailSignUpDialog({
  1. Key? key,
  2. FirebaseAuth? auth,
  3. required EmailAuthProvider provider,
  4. required AuthAction? action,
  5. bool showPasswordVisibilityToggle = false,
})

A dialog Widget that allows to create a new account using email and password or to link current account with an email.

Implementation

const EmailSignUpDialog({
  super.key,
  this.auth,
  required this.provider,
  required this.action,
  this.showPasswordVisibilityToggle = false,
});