TableEntity constructor

const TableEntity({
  1. int? columnCount,
  2. int? rowCount,
  3. bool addable = false,
  4. bool removable = false,
  5. CaptionLayoutEntity? captionLayout,
  6. required List<ColumnEntity> columns,
  7. required List<RowEntity> rows,
  8. FooterLayoutEntity? footerLayout,
})

Implementation

const TableEntity({
  this.columnCount,
  this.rowCount,
  this.addable = false,
  this.removable = false,
  this.captionLayout,
  required this.columns,
  required this.rows,
  this.footerLayout,
});