ATableColumn<T> constructor

const ATableColumn<T>({
  1. String? title,
  2. Widget? titleWidget,
  3. required ACellBuilder<T> cellBuilder,
  4. double? fixedWidth,
  5. int expanded = 1,
  6. EdgeInsets margin = const EdgeInsets.symmetric(horizontal: 8),
  7. 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,
});