NiceGridColumn<T> constructor

const NiceGridColumn<T>({
  1. required String id,
  2. required String header,
  3. required Widget cellBuilder(
    1. T row,
    2. int index
    ),
  4. double? width,
  5. int flex = 1,
  6. bool sortable = false,
  7. bool resizable = false,
  8. Alignment alignment = Alignment.centerLeft,
})

Implementation

const NiceGridColumn({
  required this.id,
  required this.header,
  required this.cellBuilder,
  this.width,
  this.flex = 1,
  this.sortable = false,
  this.resizable = false,
  this.alignment = Alignment.centerLeft,
});