CAnimatedList<T> constructor

const CAnimatedList<T>({
  1. Key? key,
  2. required ObservableList<T> observable,
  3. required AnimatedListCubeItemBuilder itemBuilder,
  4. Axis scrollDirection = Axis.vertical,
  5. bool reverse = false,
  6. ScrollController? controller,
  7. bool? primary,
  8. ScrollPhysics? physics,
  9. bool shrinkWrap = false,
  10. EdgeInsetsGeometry? padding,
})

Implementation

const CAnimatedList({
  Key? key,
  required this.observable,
  required this.itemBuilder,
  this.scrollDirection = Axis.vertical,
  this.reverse = false,
  this.controller,
  this.primary,
  this.physics,
  this.shrinkWrap = false,
  this.padding,
}) : super(key: key);