ImageSlider constructor

ImageSlider({
  1. required List<ImageProvider<Object>> images,
  2. int startPosition = 0,
  3. Function? onStart,
  4. Function? onUpdate,
  5. Function? onEnd,
  6. ImageSliderStyleOptions? style,
})

Implementation

ImageSlider({
  required this.images,
  this.startPosition = 0,
  this.onStart,
  this.onUpdate,
  this.onEnd,
  this.style,
});