Create lines empy
static List<int> emptyLines(int n) { List<int> bytes = []; if (n > 0) { bytes += List.filled(n, '\n').join().codeUnits; } return bytes; }