WebTableColumn<T> constructor
const
WebTableColumn<T> ({
- required String label,
- double? width,
- required Widget cellBuilder(
- T item
- Comparable sortKey(
- T item
Implementation
const WebTableColumn({
required this.label,
this.width,
required this.cellBuilder,
this.sortKey,
});