ListWheel.looping constructor

const ListWheel.looping({
  1. Key? key,
  2. FixedExtentScrollController? controller,
  3. ValueChanged<int>? onScrollEnd,
  4. List<Widget>? children,
  5. NotificationListenerCallback<ScrollNotification>? onNotification,
  6. ValueChanged<int>? onScrollStart,
  7. ValueChanged<int>? onScrollUpdate,
  8. WheelOptions? options,
})

Implementation

const ListWheel.looping({
  super.key,
  this.controller,
  this.onScrollEnd,
  this.children,
  this.onNotification,
  this.onScrollStart,
  this.onScrollUpdate,
  this.options,
})  : assert(children != null),
      childDelegateType = ListWheelChildDelegateType.looping,
      itemBuilder = null,
      itemCount = null;