$input function

INPUTElement $input({
  1. Object? id,
  2. Object? name,
  3. Object? classes,
  4. Object? style,
  5. Object? type,
  6. Object? placeholder,
  7. Map<String, String>? attributes,
  8. Object? value,
  9. bool? hidden,
  10. bool disabled = false,
  11. bool commented = false,
})

Creates an input node.

Implementation

INPUTElement $input(
    {Object? id,
    Object? name,
    Object? classes,
    Object? style,
    Object? type,
    Object? placeholder,
    Map<String, String>? attributes,
    Object? value,
    bool? hidden,
    bool disabled = false,
    bool commented = false}) {
  return INPUTElement(
      id: id,
      name: name,
      type: type,
      placeholder: placeholder,
      classes: classes,
      style: style,
      attributes: attributes,
      value: value,
      hidden: hidden,
      disabled: disabled,
      commented: commented);
}