DigitTable constructor
const
DigitTable({
- Key? key,
- required List<
TableHeader> headerList, - required List<
TableDataRow> tableData, - required double columnWidth,
- double? height,
- int? selectedIndex,
- ScrollPhysics? scrollPhysics,
- double columnRowFixedHeight = 52.0,
- bool? centerTitle = false,
- 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);