PasswordValidationPolicy constructor

PasswordValidationPolicy({
  1. String? complexity,
  2. bool? disallowCompromisedCredentials,
  3. bool? disallowUsernameSubstring,
  4. bool? enablePasswordPolicy,
  5. int? minLength,
  6. String? passwordChangeInterval,
  7. int? reuseInterval,
})

Implementation

PasswordValidationPolicy({
  this.complexity,
  this.disallowCompromisedCredentials,
  this.disallowUsernameSubstring,
  this.enablePasswordPolicy,
  this.minLength,
  this.passwordChangeInterval,
  this.reuseInterval,
});