setEmailAndPassword method

  1. @override
void setEmailAndPassword(
  1. String email,
  2. String password
)
override

Initializes the flow with an email and password. This method should be called after user submits a form with email and password.

Implementation

@override
void setEmailAndPassword(String email, String password) {
  provider.authenticate(email, password, action);
}