EmailAuthFlow constructor

EmailAuthFlow({
  1. required EmailAuthProvider provider,
  2. FirebaseAuth? auth,
  3. AuthAction? action,
})

An auth flow that allows authentication with email and password.

Implementation

EmailAuthFlow({
  /// {@macro ui.auth.auth_flow.ctor.provider}
  required this.provider,

  /// {@macro ui.auth.auth_controller.auth}
  super.auth,

  /// {@macro ui.auth.auth_action}
  super.action,
}) : super(
        initialState: AwaitingEmailAndPassword(),
        provider: provider,
      );