moveToRelativeRow method

void moveToRelativeRow(
  1. int ps
)

Implementation

void moveToRelativeRow(int ps) {
  currentPointer = Position(
    currentPointer.x,
    max(0, currentPointer.y + ps),
  );
}