ImageSliderStyleOptions constructor

ImageSliderStyleOptions({
  1. ImageSliderStyleEnum style = ImageSliderStyleEnum.DEFAULT,
  2. Color color = Colors.grey,
  3. double width = 200,
  4. double imageWidth = 40,
  5. Color borderColor = Colors.white,
})

Implementation

ImageSliderStyleOptions({
  this.style = ImageSliderStyleEnum.DEFAULT,
  this.color = Colors.grey,
  this.width = 200,
  this.imageWidth = 40,
  this.borderColor = Colors.white,
}) : this.options = ImageSliderStyle(style, imageWidth);