ImageSliderView constructor

const ImageSliderView({
  1. Key? key,
  2. double? imageHeight,
  3. required List<String> imagesPath,
  4. Color? dotColor,
})

Implementation

const ImageSliderView({
  super.key,
  this.imageHeight,
  required this.imagesPath,
  this.dotColor,
});