TableEntity constructor
const
TableEntity({
- int? columnCount,
- int? rowCount,
- bool addable = false,
- bool removable = false,
- CaptionLayoutEntity? captionLayout,
- required List<
ColumnEntity> columns, - required List<
RowEntity> rows,
Implementation
const TableEntity({
this.columnCount,
this.rowCount,
this.addable = false,
this.removable = false,
this.captionLayout,
required this.columns,
required this.rows,
this.footerLayout,
});