WebTableColumn<T> constructor

const WebTableColumn<T>({
  1. required String label,
  2. double? width,
  3. required Widget cellBuilder(
    1. T item
    ),
  4. Comparable sortKey(
    1. T item
    )?,
})

Implementation

const WebTableColumn({
  required this.label,
  this.width,
  required this.cellBuilder,
  this.sortKey,
});