CacheHeight constructor

const CacheHeight({
  1. Key? key,
  2. Widget? child,
  3. required List<double?> heights,
  4. required int index,
})

Implementation

const CacheHeight({
  super.key,
  super.child,
  required this.heights,
  required this.index,
});