ListOptions constructor

const ListOptions({
  1. ScrollBehavior? scrollBehavior,
  2. bool reverse = false,
  3. AlwaysScrollableScrollPhysics? scrollPhysics,
  4. Axis scrollDirection = Axis.vertical,
  5. int loadMoreTriggerItemDistance = 2,
  6. EdgeInsets? padding,
  7. bool shrinkWrap = false,
})

Implementation

const ListOptions({
  super.scrollBehavior,
  super.reverse,
  super.scrollPhysics,
  super.scrollDirection,
  super.loadMoreTriggerItemDistance,
  this.padding,
  super.shrinkWrap,
});