ImageSlideWidget constructor

const ImageSlideWidget({
  1. Key? key,
  2. required List<String> imageUrlList,
  3. required int currentIndex,
  4. dynamic onPageChanged(
    1. int
    )?,
  5. bool autoPlay = false,
  6. Duration autoPlayInterval = const Duration(seconds: 3),
})

Implementation

const ImageSlideWidget({
  super.key,
  required this.imageUrlList,
  required this.currentIndex,
  this.onPageChanged,
  this.autoPlay = false,
  this.autoPlayInterval = const Duration(seconds: 3),
});