AuthInitialValue constructor

const AuthInitialValue({
  1. bool isVerified = false,
  2. bool isAnonymously = false,
  3. required String userId,
  4. String? name,
  5. String? email,
  6. String? phoneNumber,
  7. String? photoURL,
  8. String? password,
  9. List<String>? activeProviders,
})

Class for entering initial values for authentication information.

認証情報の初期値を入力するためのクラス。

Implementation

const AuthInitialValue({
  this.isVerified = false,
  this.isAnonymously = false,
  required this.userId,
  this.name,
  this.email,
  this.phoneNumber,
  this.photoURL,
  this.password,
  this.activeProviders,
});