td constructor

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

The <td> HTML element defines a cell of a table that contains data and may be used as a child of the <tr> element.

Implementation

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