Input constructor

const Input({
  1. String? accept,
  2. String? alt,
  3. InputAutocomplete? autocomplete,
  4. bool disabled = false,
  5. String? form,
  6. String? formaction,
  7. String? formenctype,
  8. FormMethod? formmethod,
  9. bool formnovalidate = false,
  10. TargetA? formtarget,
  11. String? list,
  12. String? max,
  13. int? maxlength,
  14. String? min,
  15. bool multiple = false,
  16. String? name,
  17. String? pattern,
  18. String? placeholder,
  19. bool readonly = false,
  20. bool required = false,
  21. int? size,
  22. String? src,
  23. num? step,
  24. InputType? type,
  25. String? value,
  26. String? accesskey,
  27. bool autofocus = false,
  28. List<StyleClass>? classList,
  29. bool contentEditable = false,
  30. String? contextmenu,
  31. String? dir,
  32. bool hidden = false,
  33. String? id,
  34. String? lang,
  35. String? role,
  36. bool spellcheck = false,
  37. List<StyleCSS>? styleList,
  38. int? tabindex,
  39. String? title,
  40. String? onblur,
  41. String? onchange,
  42. String? onclick,
  43. String? ondblclick,
  44. String? onfocus,
  45. String? onkeydown,
  46. String? onkeypress,
  47. String? onkeyup,
  48. String? onload,
  49. String? onmousedown,
  50. String? onmousemove,
  51. String? onmouseout,
  52. String? onmouseover,
  53. String? onmouseup,
  54. String? onreset,
  55. String? onselect,
  56. String? onsubmit,
  57. String? onunload,
})

Implementation

const Input({
  this.accept,
  this.alt,
  this.autocomplete,
  this.disabled = false,
  this.form,
  this.formaction,
  this.formenctype,
  this.formmethod,
  this.formnovalidate = false,
  this.formtarget,
  this.list,
  this.max,
  this.maxlength,
  this.min,
  this.multiple = false,
  this.name,
  this.pattern,
  this.placeholder,
  this.readonly = false,
  this.required = false,
  this.size,
  this.src,
  this.step,
  this.type,
  this.value,
  this.accesskey,
  this.autofocus = false,
  this.classList,
  this.contentEditable = false,
  this.contextmenu,
  this.dir,
  this.hidden = false,
  this.id,
  this.lang,
  this.role,
  this.spellcheck = false,
  this.styleList,
  this.tabindex,
  this.title,
  this.onblur,
  this.onchange,
  this.onclick,
  this.ondblclick,
  this.onfocus,
  this.onkeydown,
  this.onkeypress,
  this.onkeyup,
  this.onload,
  this.onmousedown,
  this.onmousemove,
  this.onmouseout,
  this.onmouseover,
  this.onmouseup,
  this.onreset,
  this.onselect,
  this.onsubmit,
  this.onunload,
});