CustomStrengthOptionsConfig constructor

CustomStrengthOptionsConfig({
  1. bool? requireUppercase,
  2. bool? requireLowercase,
  3. bool? requireNonAlphanumeric,
  4. bool? requireNumeric,
  5. int? minLength,
  6. int? maxLength,
})

Implementation

CustomStrengthOptionsConfig({
  this.requireUppercase,
  this.requireLowercase,
  this.requireNonAlphanumeric,
  this.requireNumeric,
  this.minLength,
  this.maxLength,
});