TableBoss constructor

const TableBoss({
  1. Key? key,
  2. required List<BossDataColumn> columns,
  3. required List<DataRow> rows,
  4. Color? headerColor,
  5. Color? rowColor,
  6. double? headerHeight,
  7. double? columnSpacing,
  8. TextStyle? headerStyle,
  9. TextStyle? rowDataStyle,
  10. BorderSide? rowBoderside,
  11. 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,
});