SharedImageSlider constructor

const SharedImageSlider({
  1. required List<String> imageUrls,
  2. int index = 0,
  3. bool isCanSlide = true,
  4. Key? key,
})

Implementation

const SharedImageSlider({
  required this.imageUrls,
  this.index = 0,
  this.isCanSlide = true,
  super.key,
});