EmailAndPasswordRegisterAuthProvider constructor

const EmailAndPasswordRegisterAuthProvider({
  1. required String email,
  2. required String password,
  3. Locale? locale,
})

AuthProvider for performing Authentication.register.

Authentication.registerを実行するためのAuthProvider

Pass the email address in email, the password in password, and the language setting of the registration email in locale.

emailにメールアドレス、passwordにパスワード、localeに登録用のEメールの言語設定を渡します。

An AuthQuery to authenticate by email and password.

Unlike other forms of authentication, it is necessary to register first.

You will then be able to log in and change your email address and password.

If you forget your password, we can also send you a reset e-mail.

Eメールとパスワードでの認証を行うためのAuthQuery

他の認証とは違い、最初に登録を行う必要があります。

その後、ログインを行ったりメールアドレスやパスワードの変更が可能になります。

また、パスワードを忘れた場合、リセットメールを送ることも可能です。

Implementation

const EmailAndPasswordRegisterAuthProvider({
  required this.email,
  required this.password,
  this.locale,
});