Returns an ANSI sequence that moves the cursor down by n rows.
n
static String cursorDown(int n) => n == 1 ? '\x1b[B' : '\x1b[${n}B';