colgroup constructor

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

The <colgroup> HTML element defines a group of columns within a table.

Implementation

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