feed method

List<int> feed(
  1. int n
)

Skips n lines

Similar to emptyLines but uses an alternative command

Implementation

List<int> feed(int n) {
  List<int> bytes = [];
  if (n >= 0 && n <= 255) {
    bytes += Uint8List.fromList(
      List.from(cFeedN.codeUnits)..add(n),
    );
  }
  return bytes;
}