move method

void move(
  1. int column,
  2. int row
)

Implementation

void move(int column, int row) {
  Console.moveCursor(column: column, row: row);
}