TableBoss constructor
const
TableBoss({
- Key? key,
- required List<
BossDataColumn> columns, - required List<
DataRow> rows, - Color? headerColor,
- Color? rowColor,
- double? headerHeight,
- double? columnSpacing,
- TextStyle? headerStyle,
- TextStyle? rowDataStyle,
- BorderSide? rowBoderside,
- BorderSide? headerBoderside,
Implementation
const TableBoss({
super.key,
required this.columns,
required this.rows,
this.headerColor,
this.rowColor,
this.headerHeight,
this.columnSpacing,
this.headerStyle,
this.rowDataStyle,
this.rowBoderside,
this.headerBoderside,
});