jumpToRelative method

void jumpToRelative(
  1. double offset
)

Same as jumpTo but will move offset from the current position.

Implementation

void jumpToRelative(double offset) {
  return super.jumpTo(this.offset + offset);
}