InputPassword constructor

const InputPassword({
  1. Key? key,
  2. ValueChanged<String>? onChanged,
  3. FormFieldValidator<String>? validate,
  4. dynamic onValidationChanged(
    1. bool isValid
    )?,
  5. VoidCallback? onforgotpassword,
  6. AutovalidateMode autovalidateMode = AutovalidateMode.disabled,
  7. String? hintText,
  8. bool? disabled,
  9. bool? obscureText,
  10. PasswordState? state,
  11. FocusNode? focusNode,
})

Implementation

const InputPassword({
  super.key,
  this.onChanged,
  this.validate,
  this.onValidationChanged,
  this.onforgotpassword,
  this.autovalidateMode = AutovalidateMode.disabled,
  this.hintText,
  this.disabled,
  this.obscureText,
  this.state,
  this.focusNode,
});