UpdateResponse.confirmEmail constructor

const UpdateResponse.confirmEmail({
  1. String? email,
  2. String? displayName,
  3. Uri? photoUrl,
  4. String? passwordHash,
  5. @Default(<ProviderUserInfo>[]) List<ProviderUserInfo> providerUserInfo,
  6. @Default(false) bool emailVerified,
})

Implementation

const factory UpdateResponse.confirmEmail({
  /// The email of the account.
  String? email,

  /// The display name for the account.
  String? displayName,

  /// The photo Url for the account.
  Uri? photoUrl,

  /// The password hash.
  String? passwordHash,

  /// List of all linked [ProviderUserInfo]s.
  @Default(<ProviderUserInfo>[]) List<ProviderUserInfo> providerUserInfo,

  /// Whether or not the account's email has been verified.
  @Default(false) bool emailVerified,
}) = ConfirmEmailResponse;