DigitTable constructor

const DigitTable({
  1. Key? key,
  2. required List<TableHeader> headerList,
  3. required List<TableDataRow> tableData,
  4. required double columnWidth,
  5. double? height,
  6. int? selectedIndex,
  7. ScrollPhysics? scrollPhysics,
  8. double columnRowFixedHeight = 52.0,
  9. bool? centerTitle = false,
  10. bool? centerData = false,
})

Implementation

const DigitTable({
  Key? key,
  required this.headerList,
  required this.tableData,
  required this.columnWidth,
  this.height,
  this.selectedIndex,
  this.scrollPhysics,
  this.columnRowFixedHeight = 52.0,
  this.centerTitle = false,
  this.centerData = false,
}) : super(key: key);