AuthInitialValue.phone constructor

const AuthInitialValue.phone({
  1. required String userId,
  2. required String? phoneNumber,
  3. String? name,
})

Enter phoneNumber to register with phone number AuthInitialValue.

phoneNumberを入力して電話番号での登録を行うAuthInitialValue

Implementation

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