QuickScrollbar constructor

const QuickScrollbar({
  1. Key? key,
  2. ScrollController? controller,
  3. int velocity = 10,
  4. required Widget child,
})

Implementation

const QuickScrollbar({
  Key? key,
  this.controller,
  this.velocity = 10,
  required this.child,
}) : super(key: key);