InfiniteListOptions constructor

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

Implementation

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