FlutterFormInputPassword constructor

const FlutterFormInputPassword({
  1. Key? key,
  2. Widget? label,
  3. FocusNode? focusNode,
  4. TextStyle? style,
  5. String? initialValue,
  6. List<TextInputFormatter>? inputFormatters,
  7. dynamic onSaved(
    1. String?
    )?,
  8. String? validator(
    1. String?
    )?,
  9. dynamic onChanged(
    1. String?
    )?,
  10. dynamic onFieldSubmitted(
    1. String?
    )?,
  11. bool enabled = true,
  12. double? iconSize,
  13. InputDecoration? decoration,
  14. TextEditingController? controller,
})

Implementation

const FlutterFormInputPassword({
  super.key,
  this.label,
  this.focusNode,
  this.style,
  this.initialValue,
  this.inputFormatters,
  this.onSaved,
  this.validator,
  this.onChanged,
  this.onFieldSubmitted,
  this.enabled = true,
  this.iconSize,
  this.decoration,
  this.controller,
});