DynamicTableDataColumn constructor
const
DynamicTableDataColumn({
- required Widget label,
- String? tooltip,
- bool numeric = false,
- DataColumnSortCallback? onSort,
- bool isEditable = true,
- required DynamicTableInputType<
Object> dynamicTableInputType,
Creates the configuration for a column of a DynamicTable.
The label
argument must not be null.
The column heading.
Implementation
const DynamicTableDataColumn(
{required this.label,
this.tooltip,
this.numeric = false,
this.onSort,
this.isEditable = true,
required this.dynamicTableInputType});