Input constructor

const Input({
  1. InputType? type,
  2. String? name,
  3. bool? disabled,
  4. String? form,
  5. String? inputMode,
  6. int? tabIndex,
  7. String? value,
  8. Key? key,
  9. NullableElementCallback? ref,
  10. String? id,
  11. String? title,
  12. String? style,
  13. String? className,
  14. bool? hidden,
  15. String? innerText,
  16. Widget? child,
  17. List<Widget>? children,
  18. EventCallback? onClick,
  19. EventCallback? onInput,
  20. EventCallback? onChange,
  21. EventCallback? onKeyUp,
  22. EventCallback? onKeyDown,
  23. EventCallback? onKeyPress,
  24. Map<String, String>? additionalAttributes,
})

Implementation

const Input({
  InputType? type,
  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(
        name: name,
        form: form,
        value: value,
        tabIndex: tabIndex,
        disabled: disabled,
        inputMode: inputMode,
        type: type,
        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,
      );