offsetScroll property

double get offsetScroll

Implementation

double get offsetScroll => _offsetScroll;
set offsetScroll (double value)

Implementation

set offsetScroll(double value) {
  if (height == -1) return; // do not change offset when height is not available.
  _offsetScroll = value.clamp(-height, 0.0);
  repaint();
}