PasswordControls.all constructor

const PasswordControls.all(
  1. bool value, {
  2. int passwordMinLength = 6,
})

Implementation

const PasswordControls.all(
  bool value, {
  this.passwordMinLength = 6,
})  : this.hasUppercase = value,
      this.hasDigits = value,
      this.hasSpecialCharacter = value;