Table constructor

Table({
  1. List<TableColumnProperties>? columnProperties,
  2. String? name,
  3. GridRange? range,
  4. TableRowsProperties? rowsProperties,
  5. String? tableId,
})

Implementation

Table({
  this.columnProperties,
  this.name,
  this.range,
  this.rowsProperties,
  this.tableId,
});