TEXTAREAElement constructor

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

Implementation

TEXTAREAElement(
    {Map<String, dynamic>? attributes,
    Object? id,
    Object? name,
    Object? classes,
    Object? style,
    Object? cols,
    Object? rows,
    Object? content,
    bool? hidden,
    bool disabled = false,
    bool commented = false})
    : super._('textarea',
          id: id,
          classes: classes,
          style: style,
          attributes: {
            if (name != null) 'name': name,
            if (cols != null) 'cols': cols,
            if (rows != null) 'rows': rows,
            if (disabled) 'disabled': disabled,
            ...?attributes
          },
          content: content,
          hidden: hidden,
          commented: commented);