PasswordPolicy constructor

PasswordPolicy({
  1. bool? allowUsersToChangePassword,
  2. bool? expirePasswords,
  3. bool? hardExpiry,
  4. int? maxPasswordAge,
  5. int? minimumPasswordLength,
  6. int? passwordReusePrevention,
  7. bool? requireLowercaseCharacters,
  8. bool? requireNumbers,
  9. bool? requireSymbols,
  10. bool? requireUppercaseCharacters,
})

Implementation

PasswordPolicy({
  this.allowUsersToChangePassword,
  this.expirePasswords,
  this.hardExpiry,
  this.maxPasswordAge,
  this.minimumPasswordLength,
  this.passwordReusePrevention,
  this.requireLowercaseCharacters,
  this.requireNumbers,
  this.requireSymbols,
  this.requireUppercaseCharacters,
});