CarpenterTableColumn<T> constructor

const CarpenterTableColumn<T>({
  1. required String id,
  2. required String label,
  3. required CarpenterTableValue<T> value,
  4. CarpenterTableCellBuilder<T>? cell,
  5. CarpenterTableValue<T>? filterValue,
  6. double width = 160,
  7. bool sortable = true,
  8. bool searchable = true,
  9. bool filterable = false,
  10. 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,
});