addReverseFeed method
Implementation
void addReverseFeed({int lines = 1}) {
if (lines < 1) {
lines = 1;
}
bytes.add(Uint8List.fromList(generator.reverseFeed(lines)));
}
void addReverseFeed({int lines = 1}) {
if (lines < 1) {
lines = 1;
}
bytes.add(Uint8List.fromList(generator.reverseFeed(lines)));
}