relativeJumpTo method

void relativeJumpTo(
  1. double offset
)

Implementation

void relativeJumpTo(double offset) {
  assert(positions.isNotEmpty,
      'ScrollController not attached to any scroll views.');
  for (final ScrollPosition position in positions) {
    (position as SheetPosition).relativeJumpTo(offset);
  }
}