DataColumnPlus constructor

const DataColumnPlus({
  1. required Widget label,
  2. String? tooltip,
  3. bool numeric = false,
  4. dynamic onSort(
    1. int,
    2. bool
    )?,
})

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);