SliderDrawerOption constructor

SliderDrawerOption({
  1. Color backgroundColor = Colors.blue,
  2. SliderEffectType sliderEffectType = SliderEffectType.Rectangle,
  3. Image? backgroundImage,
  4. double radiusAmount = 0,
  5. double upDownScaleAmount = 0,
  6. SliderDrawerDirection direction = SliderDrawerDirection.LTR,
})

Implementation

SliderDrawerOption({
  this.backgroundColor = Colors.blue,
  this.sliderEffectType = SliderEffectType.Rectangle,
  this.backgroundImage,
  this.radiusAmount = 0,
  this.upDownScaleAmount = 0,
  this.direction = SliderDrawerDirection.LTR,
});