relativeJumpTo method
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);
}
}