ColumnInfo<T, V> constructor

const ColumnInfo<T, V>({
  1. required ColumnDef<T, V> def,
  2. required String id,
  3. required bool isVisible,
  4. required bool isPinnedLeft,
  5. required bool isPinnedRight,
  6. double? effectiveWidth,
  7. required int orderIndex,
})

Implementation

const ColumnInfo({
  required this.def,
  required this.id,
  required this.isVisible,
  required this.isPinnedLeft,
  required this.isPinnedRight,
  this.effectiveWidth,
  required this.orderIndex,
});