moveUp method

void moveUp([
  1. int n = 1
])

Moves the cursor up n cells.

Implementation

void moveUp([int n = 1]) => write(ansi.Cursor.moveUp(n));