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