Table constructor

Table({
  1. TableSection? caption,
  2. TableSection? thead,
  3. TableSection? tbody,
  4. TableSection? tfoot,
  5. String? id,
  6. String? className,
  7. Map<String, dynamic>? style,
  8. Map<String, String>? attributes,
  9. String tag = 'table',
})

Implementation

Table({
  this.caption,
  this.thead,
  this.tbody,
  this.tfoot,
  super.id,
  super.className,
  super.style,
  super.attributes,
  super.tag = 'table',
});