VentSliderDecoration constructor

VentSliderDecoration({
  1. Color? bacgroundColor = const Color(0xFFEEEEEE),
  2. Color? foregroundColor = VentColorSwatch.Primary,
  3. Color? thumbColor = VentColorSwatch.Primary,
  4. double? thumbRadius = 16,
  5. double? strokeSize = 3,
})

Implementation

VentSliderDecoration({
  this.bacgroundColor = const Color(0xFFEEEEEE),
  this.foregroundColor = VentColorSwatch.Primary,
  this.thumbColor = VentColorSwatch.Primary,
  this.thumbRadius = 16,
  this.strokeSize = 3,
});