Table constructor

Table({
  1. Headers? columnHeaders,
  2. String? name,
  3. Headers? rowHeaders,
  4. List<Row>? rows,
})

Implementation

Table({
  this.columnHeaders,
  this.name,
  this.rowHeaders,
  this.rows,
});