PasswordState constructor

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

Implementation

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