ATableColumn<T> constructor
const
ATableColumn<T> ({
- String? title,
- Widget? titleWidget,
- required ACellBuilder<
T> cellBuilder, - double? fixedWidth,
- int expanded = 1,
- EdgeInsets margin = const EdgeInsets.symmetric(horizontal: 8),
- TextAlign headerAlignment = TextAlign.left,
Implementation
const ATableColumn({
this.title,
this.titleWidget,
required this.cellBuilder,
this.fixedWidth,
this.expanded = 1,
this.margin = const EdgeInsets.symmetric(horizontal: 8),
this.headerAlignment = TextAlign.left,
});