DataColumnPlus constructor
Creates the configuration for a column of a DataTablePlus.
The label
argument must not be null.
Implementation
const DataColumnPlus(
{required Widget label,
String? tooltip,
bool numeric = false,
Function(int, bool)? onSort})
: super(label: label, tooltip: tooltip, numeric: numeric, onSort: onSort);