moveToRelativeColumn method

void moveToRelativeColumn(
  1. int ps
)

Implementation

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