SmoothScrollWeb constructor

SmoothScrollWeb({
  1. required ScrollController controller,
  2. required Widget child,
  3. int scrollSpeed = DEFAULT_SCROLL_SPEED,
  4. int scrollAnimationLength = DEFAULT_NORMAL_SCROLL_ANIMATION_LENGTH_MS,
  5. Curve curve = Curves.linear,
})

Implementation

SmoothScrollWeb({
  required this.controller,
  required this.child,
  this.scrollSpeed = DEFAULT_SCROLL_SPEED,
  this.scrollAnimationLength = DEFAULT_NORMAL_SCROLL_ANIMATION_LENGTH_MS,
  this.curve = Curves.linear,
});