signIn static method

EmailLinkSignInAuthProvider signIn({
  1. required String email,
  2. required String url,
  3. Locale? locale,
})

AuthProvider for performing Authentication.signIn.

allowMultiProvider is a flag that allows multiple providers to be used.

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

allowMultiProviderは複数のプロバイダーを利用することを許可するフラグです。

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

emailにメールアドレス、urlにメールに記載するリンク、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 EmailLinkSignInAuthProvider signIn({
  required String email,
  required String url,
  Locale? locale,
}) {
  return EmailLinkSignInAuthProvider(
    email: email,
    url: url,
    locale: locale,
  );
}