ScrollIndicator constructor

const ScrollIndicator(
  1. ScrollController controller, {
  2. Key? key,
  3. double spoutWidth = 80,
  4. double sliderWidth = 40,
  5. double sliderHeight = 7,
  6. Color spoutColor = const Color.fromARGB(255, 183, 183, 183),
  7. Color sliderColor = const Color.fromARGB(255, 255, 134, 13),
})

Implementation

const ScrollIndicator(
  this.controller, {
  super.key,
  this.spoutWidth = 80,
  this.sliderWidth = 40,
  this.sliderHeight = 7,
  this.spoutColor = const Color.fromARGB(255, 183, 183, 183),
  this.sliderColor = const Color.fromARGB(255, 255, 134, 13),
});