ScrollBar constructor

ScrollBar({
  1. required ScrollController controller,
  2. required Widget child,
  3. required double visibleHeight,
  4. double? scrollbarMinWidth,
  5. double? scrollbarMaxWidth,
  6. int? animationLength,
  7. Color? scrollThumbColor,
  8. Color? scrollbarColor,
})

Implementation

ScrollBar({
  required this.controller,
  required this.child,
  required this.visibleHeight,
  this.scrollbarMinWidth,
  this.scrollbarMaxWidth,
  this.animationLength,
  this.scrollThumbColor,
  this.scrollbarColor,
});