WebDataColumn constructor

const WebDataColumn({
  1. required String name,
  2. required Widget label,
  3. required DataCell dataCell(
    1. dynamic value
    ),
  4. String? tooltip,
  5. bool numeric = false,
  6. bool sortable = true,
  7. Comparable comparable(
    1. dynamic value
    )?,
  8. String filterText(
    1. dynamic value
    )?,
})

Implementation

const WebDataColumn({
  required this.name,
  required this.label,
  required this.dataCell,
  this.tooltip,
  this.numeric = false,
  this.sortable = true,
  this.comparable,
  this.filterText,
});