InputPassword constructor

const InputPassword({
  1. int? maxLength,
  2. int? minLength,
  3. String? pattern,
  4. String? placeholder,
  5. bool? readOnly,
  6. bool? required,
  7. String? size,
  8. String? name,
  9. bool? disabled,
  10. String? form,
  11. String? inputMode,
  12. int? tabIndex,
  13. String? value,
  14. Key? key,
  15. NullableElementCallback? ref,
  16. String? id,
  17. String? title,
  18. String? style,
  19. String? className,
  20. bool? hidden,
  21. String? innerText,
  22. Widget? child,
  23. List<Widget>? children,
  24. EventCallback? onClick,
  25. EventCallback? onInput,
  26. EventCallback? onChange,
  27. EventCallback? onKeyUp,
  28. EventCallback? onKeyDown,
  29. EventCallback? onKeyPress,
  30. Map<String, String>? additionalAttributes,
})

Implementation

const InputPassword({
  int? maxLength,
  int? minLength,
  String? pattern,
  String? placeholder,
  bool? readOnly,
  bool? required,
  String? size,
  String? name,
  bool? disabled,
  String? form,
  String? inputMode,
  int? tabIndex,
  String? value,
  Key? key,
  NullableElementCallback? ref,
  String? id,
  String? title,
  String? style,
  String? className,
  bool? hidden,
  String? innerText,
  Widget? child,
  List<Widget>? children,
  EventCallback? onClick,
  EventCallback? onInput,
  EventCallback? onChange,
  EventCallback? onKeyUp,
  EventCallback? onKeyDown,
  EventCallback? onKeyPress,
  Map<String, String>? additionalAttributes,
}) : super(
        maxLength: maxLength,
        minLength: minLength,
        pattern: pattern,
        placeholder: placeholder,
        readOnly: readOnly,
        required: required,
        size: size,
        name: name,
        form: form,
        valueProperty: value,
        tabIndex: tabIndex,
        disabled: disabled,
        inputMode: inputMode,
        type: InputType.password,
        key: key,
        ref: ref,
        id: id,
        title: title,
        style: style,
        className: className,
        hidden: hidden,
        innerText: innerText,
        child: child,
        children: children,
        onClick: onClick,
        onInput: onInput,
        onChange: onChange,
        onKeyUp: onKeyUp,
        onKeyDown: onKeyDown,
        onKeyPress: onKeyPress,
        additionalAttributes: additionalAttributes,
      );