th constructor

const th(
  1. List<Component> children, {
  2. String? abbr,
  3. int? colspan,
  4. String? headers,
  5. int? rowspan,
  6. String? scope,
  7. String? id,
  8. String? classes,
  9. Styles? styles,
  10. Map<String, String>? attributes,
  11. Map<String, EventCallback>? events,
  12. Key? key,
})

The <th> HTML element defines a cell as the header of a group of table cells and may be used as a child of the <tr> element. The exact nature of this group is defined by the scope and headers attributes.

Implementation

const th(
  this.children, {
  this.abbr,
  this.colspan,
  this.headers,
  this.rowspan,
  this.scope,
  this.id,
  this.classes,
  this.styles,
  this.attributes,
  this.events,
  super.key,
});