col constructor

const col({
  1. int? span,
  2. String? id,
  3. String? classes,
  4. Styles? styles,
  5. Map<String, String>? attributes,
  6. Map<String, EventCallback>? events,
  7. Key? key,
})

The <col> HTML element defines one or more columns in a column group represented by its parent <colgroup> element. The <col> element is only valid as a child of a <colgroup> element that has no span attribute defined.

Implementation

const col({
  this.span,
  this.id,
  this.classes,
  this.styles,
  this.attributes,
  this.events,
  super.key,
});