PasswordPolicy constructor

PasswordPolicy(
  1. int minLength,
  2. bool lowercase,
  3. bool uppercase,
  4. bool number,
  5. bool nonAlphanumeric,
)

Implementation

PasswordPolicy(this.minLength, this.lowercase, this.uppercase, this.number, this.nonAlphanumeric);