SmsConfirmSignInAuthProvider constructor

const SmsConfirmSignInAuthProvider({
  1. required String code,
})

AuthProvider for performing Authentication.confirmSignIn.

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

Pass the code sent by SMS at code.

codeでSMSで送られたコードを渡します。

An AuthQuery for SMS code authentication.

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

After logging in, you will be able to change your phone number.

SMSのコード認証を行うためのAuthQuery

signIn時にコード付きのSMSを送信し、confirmSignInでコードを確定してログインを行ないます。

ログイン後、電話番号の変更が可能になります。

Implementation

const SmsConfirmSignInAuthProvider({
  required this.code,
});