TableColumn<T> constructor

const TableColumn<T>({
  1. required String title,
  2. required TableCellBuilder<T> cellBuilder,
  3. TableConstraint width = const TableConstraint.fill(1),
  4. Style? headerStyle,
  5. TextAlign headerAlign = TextAlign.left,
})

Implementation

const TableColumn({
  required this.title,
  required this.cellBuilder,
  this.width = const TableConstraint.fill(1),
  this.headerStyle,
  this.headerAlign = TextAlign.left,
});