AccountPassword constructor

const AccountPassword({
  1. required bool hasRecovery,
  2. required bool hasSecureValues,
  3. required bool hasPassword,
  4. PasswordKdfAlgoBase? currentAlgo,
  5. Uint8List? srpB,
  6. int? srpId,
  7. String? hint,
  8. String? emailUnconfirmedPattern,
  9. required PasswordKdfAlgoBase newAlgo,
  10. required SecurePasswordKdfAlgoBase newSecureAlgo,
  11. required Uint8List secureRandom,
  12. DateTime? pendingResetDate,
  13. String? loginEmailPattern,
})

Account Password constructor.

Implementation

const AccountPassword({
  required this.hasRecovery,
  required this.hasSecureValues,
  required this.hasPassword,
  this.currentAlgo,
  this.srpB,
  this.srpId,
  this.hint,
  this.emailUnconfirmedPattern,
  required this.newAlgo,
  required this.newSecureAlgo,
  required this.secureRandom,
  this.pendingResetDate,
  this.loginEmailPattern,
}) : super._();