DataColumn2 constructor
const
DataColumn2({
- required Widget label,
- String? tooltip,
- bool numeric = false,
- DataColumnSortCallback? onSort,
- ColumnSize size = ColumnSize.M,
- double? fixedWidth,
Creates the configuration for a column of a DataTable2.
The label
argument must not be null.
Implementation
const DataColumn2(
{required super.label,
super.tooltip,
super.numeric = false,
super.onSort,
this.size = ColumnSize.M,
this.fixedWidth});