TableColumn<T> constructor
const
TableColumn<T> ({
- required String title,
- required TableCellBuilder<
T> cellBuilder, - TableConstraint width = const TableConstraint.fill(1),
- Style? headerStyle,
- 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,
});