ListWheel constructor

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

Implementation

const ListWheel({
  super.key,
  required this.delegate,
  this.controller,
  this.onScrollEnd,
  this.onNotification,
  this.onScrollStart,
  this.onScrollUpdate,
  this.options,
});