verify static method

EmailLinkVerifyAuthProvider verify({
  1. Locale? locale,
})

AuthProvider for performing Authentication.verify.

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

Pass the language setting of the authentication email to locale.

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

static EmailLinkVerifyAuthProvider verify({
  Locale? locale,
}) {
  return EmailLinkVerifyAuthProvider(locale: locale);
}