NicePasswordInput constructor

const NicePasswordInput({
  1. Key? key,
  2. String? value,
  3. ValueChanged<String>? onChanged,
  4. String? label,
  5. String? hint,
  6. String? errorText,
  7. bool enabled = true,
  8. bool showStrength = true,
  9. List<NicePasswordRule>? rules,
})

Implementation

const NicePasswordInput({
  super.key,
  this.value,
  this.onChanged,
  this.label,
  this.hint,
  this.errorText,
  this.enabled = true,
  this.showStrength = true,
  this.rules,
});