PasswordValidationPolicy constructor

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

Implementation

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