feed method

void feed(
  1. int n
)

Skips n lines

Similar to emptyLines but uses an alternative command

Implementation

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