DynamicTableDataColumn constructor

const DynamicTableDataColumn({
  1. required Widget label,
  2. String? tooltip,
  3. bool numeric = false,
  4. DataColumnSortCallback? onSort,
  5. bool isEditable = true,
  6. 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});