signIn static method

DirectSignInAuthProvider signIn({
  1. required String userId,
})

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

static DirectSignInAuthProvider signIn({
  required String userId,
}) {
  return DirectSignInAuthProvider(userId: userId);
}