ScrollbarInfo constructor

ScrollbarInfo({
  1. required bool isScrolling,
  2. required bool isDragging,
  3. required AxisDirection scrollDirection,
  4. required double thumbMainAxisSize,
  5. required double thumbMainAxisOffset,
})

Implementation

ScrollbarInfo({
  required this.isScrolling,
  required this.isDragging,
  required this.scrollDirection,
  required this.thumbMainAxisSize,
  required this.thumbMainAxisOffset,
});