CarpenterTableColumn<T> constructor
const
CarpenterTableColumn<T> ({
- required String id,
- required String label,
- required CarpenterTableValue<
T> value, - CarpenterTableCellBuilder<
T> ? cell, - CarpenterTableValue<
T> ? filterValue, - double width = 160,
- bool sortable = true,
- bool searchable = true,
- bool filterable = false,
- Alignment align = Alignment.centerLeft,
Implementation
const CarpenterTableColumn({
required this.id,
required this.label,
required this.value,
this.cell,
this.filterValue,
this.width = 160,
this.sortable = true,
this.searchable = true,
this.filterable = false,
this.align = Alignment.centerLeft,
});