AuthInitialValue.email constructor

const AuthInitialValue.email({
  1. required String userId,
  2. required String? email,
  3. required String? password,
  4. String? name,
})

Enter email and password to register with email address AuthInitialValue.

emailpasswordを入力してメールアドレスでの登録を行うAuthInitialValue

Implementation

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