MyTableColumn<T> constructor
const
MyTableColumn<T> ({})
Implementation
const MyTableColumn({
required this.name,
this.tooltip,
this.builder,
this.customCellBuilder,
this.headerWidgetBuilder,
this.tableWidth,
this.cellTooptip,
}) : assert(
builder != null || customCellBuilder != null,
'Either builder or widgetBuilder must be provided',
);