PasswordState constructor

const PasswordState({
  1. required bool hasPassword,
  2. required String passwordHint,
  3. required bool hasRecoveryEmailAddress,
  4. required bool hasPassportData,
  5. EmailAddressAuthenticationCodeInfo? recoveryEmailAddressCodeInfo,
  6. required int pendingResetDate,
  7. dynamic extra,
  8. int? clientId,
})

Represents the current state of 2-step verification

Implementation

const PasswordState({
  required this.hasPassword,
  required this.passwordHint,
  required this.hasRecoveryEmailAddress,
  required this.hasPassportData,
  this.recoveryEmailAddressCodeInfo,
  required this.pendingResetDate,
  this.extra,
  this.clientId,
});