updateVerticalScrollPosition method

void updateVerticalScrollPosition(
  1. Offset updatedOffset
)

Implementation

void updateVerticalScrollPosition(Offset updatedOffset) {
  Matrix4 transform = controlInterface.getTransform();
  _updateScrollPositionP(
    updatedOffset,
    _startDragScrollbarAxisOffsetV,
    _lastDragUpdateOffsetV,
    _startDragThumbOffsetV,
    verticalScrollbar,
    AxisDirection.down,
    transform.getTranslation().y,
    getScrollMetricsV(transform, controlInterface.getViewport(),
        controlInterface.getContent()),
    controlInterface.jumpVertical,
  );
}