FSTableColumn<T> constructor

const FSTableColumn<T>({
  1. required String header,
  2. String? accessor,
  3. Widget cellBuilder(
    1. T item
    )?,
  4. bool sortable = false,
  5. double? width,
  6. TextAlign headerAlign = TextAlign.left,
  7. TextAlign cellAlign = TextAlign.left,
  8. bool visible = true,
  9. int? priority,
})

Implementation

const FSTableColumn({
  required this.header,
  this.accessor,
  this.cellBuilder,
  this.sortable = false,
  this.width,
  this.headerAlign = TextAlign.left,
  this.cellAlign = TextAlign.left,
  this.visible = true,
  this.priority,
});