Skips n lines
n
Similar to feed but uses an alternative command
List<int> emptyLines(int n) { List<int> bytes = []; if (n > 0) { bytes += List.filled(n, '\n').join().codeUnits; } return bytes; }