AuthInitialValue.anonymously constructor

const AuthInitialValue.anonymously({
  1. required String userId,
  2. String? name,
})

Enter userId to register with anonymous AuthInitialValue.

userIdを入力して匿名での登録を行うAuthInitialValue

Implementation

const AuthInitialValue.anonymously({
  required this.userId,
  this.name,
})  : isAnonymously = true,
      isVerified = false,
      activeProviders = const ["anonymous"],
      email = null,
      phoneNumber = null,
      photoURL = null,
      password = null;