PasswordInput constructor

PasswordInput({
  1. Key? key,
  2. String value = "",
  3. int length = 6,
  4. bool mask = true,
  5. bool hideWhenSubmitted = false,
  6. String? info,
  7. dynamic onClick()?,
  8. dynamic onChange(
    1. String val
    )?,
  9. dynamic onSubmitted(
    1. String val
    )?,
})

Implementation

PasswordInput(
    {Key? key,
    this.value: "",
    this.length: 6,
    this.mask: true,
    this.hideWhenSubmitted: false,
    this.info,
    this.onClick,
    this.onChange,
    this.onSubmitted})
    : super(key: key);