Table constructor

Table({
  1. int? columns,
  2. int? rows,
  3. List<String>? suggestedDeletionIds,
  4. List<String>? suggestedInsertionIds,
  5. List<TableRow>? tableRows,
  6. TableStyle? tableStyle,
})

Implementation

Table({
  this.columns,
  this.rows,
  this.suggestedDeletionIds,
  this.suggestedInsertionIds,
  this.tableRows,
  this.tableStyle,
});