$textarea function

TEXTAREAElement $textarea({
  1. Object? id,
  2. Object? name,
  3. Object? classes,
  4. Object? style,
  5. Object? cols,
  6. Object? rows,
  7. Map<String, String>? attributes,
  8. Object? content,
  9. bool? hidden,
  10. bool disabled = false,
  11. bool commented = false,
})

Creates a textarea node.

Implementation

TEXTAREAElement $textarea(
    {Object? id,
    Object? name,
    Object? classes,
    Object? style,
    Object? cols,
    Object? rows,
    Map<String, String>? attributes,
    Object? content,
    bool? hidden,
    bool disabled = false,
    bool commented = false}) {
  return TEXTAREAElement(
      id: id,
      name: name,
      classes: classes,
      style: style,
      cols: cols,
      rows: rows,
      attributes: attributes,
      content: content,
      hidden: hidden,
      disabled: disabled,
      commented: commented);
}