moveUp method

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

Implementation

void moveUp([int n = 1]) {
  _stdout.write(ConsoleStrings.cursorUp(n));
}