AccountPassword constructor
const
AccountPassword({
- required bool hasRecovery,
- required bool hasSecureValues,
- required bool hasPassword,
- PasswordKdfAlgoBase? currentAlgo,
- Uint8List? srpB,
- int? srpId,
- String? hint,
- String? emailUnconfirmedPattern,
- required PasswordKdfAlgoBase newAlgo,
- required SecurePasswordKdfAlgoBase newSecureAlgo,
- required Uint8List secureRandom,
- DateTime? pendingResetDate,
- 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._();