moveRight method

void moveRight([
  1. int times = 1
])

Implementation

void moveRight([int times = 1]) {
  Console.moveCursorForward(times);
}