StickyTableColumn<T> constructor

StickyTableColumn<T>(
  1. String title, {
  2. void onTitleClick(
    1. BuildContext context,
    2. StickyTableColumn<T> title
    )?,
  3. StickyTableCellFunction<T, void>? onCellClick,
  4. bool? sort,
  5. bool showSort = false,
  6. Alignment alignment = Alignment.center,
  7. Widget renderTitle(
    1. BuildContext context,
    2. StickyTableColumn<T> title
    )?,
  8. StickyTableCellFunction<T, Widget>? renderCell,
  9. TableColumnWidth? columnWidth,
  10. bool fixedStart = false,
  11. bool fixedEnd = false,
})

Implementation

StickyTableColumn(
  this.title, {
  this.onTitleClick,
  this.onCellClick,
  this.sort,
  this.showSort = false,
  this.alignment = Alignment.center,
  this.renderTitle,
  this.renderCell,
  this.columnWidth,
  this.fixedStart = false,
  this.fixedEnd = false,
});