Returns an ANSI sequence to delete n lines.
n
static String deleteLine(int n) => n == 1 ? '\x1b[M' : '\x1b[${n}M';