TableColumn<T> constructor
TableColumn<T> ({
- String? key,
- String? keyLabel,
- required Widget label,
- String? tooltip,
- bool numeric = false,
- SortConfig? sortConfig,
- SearchConfig? searchConfig,
- FilterConfig<
T> ? filterConfig,
Implementation
TableColumn({
this.key,
this.keyLabel,
required this.label,
this.tooltip,
this.numeric = false,
this.sortConfig,
this.searchConfig,
this.filterConfig,
}) : assert(!(key == null && keyLabel != null), "key cannot be null when keyLabel is provided"),
assert(!(searchConfig != null && filterConfig != null),
"You cannot provide both filterConfig and filterConfig");