DirectSignInAuthProvider constructor

const DirectSignInAuthProvider({
  1. required String userId,
  2. bool allowMultiProvider = true,
})

AuthProvider for performing Authentication.signIn.

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

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

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

An AuthQuery for debugging authentication.

You will be logged in by specifying your user ID directly.

デバッグ認証を行うためのAuthQuery

ユーザーIDを直接指定してログインされます。

Implementation

const DirectSignInAuthProvider({
  required this.userId,
  super.allowMultiProvider = true,
});