NicePasswordInput constructor

const NicePasswordInput({
  1. Key? key,
  2. String? value,
  3. void onChanged(
    1. String
    )?,
  4. bool showStrength = true,
  5. bool showToggle = true,
  6. String? label,
  7. String? errorText,
  8. String? hintText,
  9. bool enabled = true,
  10. TextInputAction? textInputAction,
  11. void onSubmitted(
    1. String
    )?,
})

Implementation

const NicePasswordInput({
  super.key,
  this.value,
  this.onChanged,
  this.showStrength = true,
  this.showToggle = true,
  this.label,
  this.errorText,
  this.hintText,
  this.enabled = true,
  this.textInputAction,
  this.onSubmitted,
});