EmailLinkChangeEmailAuthProvider constructor

const EmailLinkChangeEmailAuthProvider({
  1. required String email,
  2. Locale? locale,
})

AuthProvider for performing Authentication.change.

Used to change your e-mail address.

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

メールアドレスを変更する際に利用します。

Pass the email address in email and the language setting of the authentication email in locale.

emailにメールアドレス、localeに認証用のEメールの言語設定を渡します。

An AuthQuery for link authentication via email.

An email with a link is sent at signIn, and the link is confirmed at confirmSignIn to log in.

No password will be required.

After logging in, you will be able to change your e-mail address.

Eメールでリンク認証を行うためのAuthQuery

signIn時にリンク付きのメールを送信し、confirmSignInでリンクを確定してログインを行ないます。

パスワードが必要なくなります。

ログイン後、メールアドレスの変更が可能になります。

Implementation

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