moveDown method

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

Implementation

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