FollyTableColumnBuilder constructor

FollyTableColumnBuilder({
  1. required double width,
  2. required FollyCell builder(
    1. int row
    ),
  3. FollyCell header = const FollyCell.empty(),
})

Implementation

FollyTableColumnBuilder({
  required this.width,
  required this.builder,
  this.header = const FollyCell.empty(),
});