deleteLines method
Implementation
void deleteLines(int count) {
if (hasScrollableRegion && !isInScrollableRegion) {
return;
}
setCursorX(0);
for (var i = 0; i < count; i++) {
deleteLine();
}
}
void deleteLines(int count) {
if (hasScrollableRegion && !isInScrollableRegion) {
return;
}
setCursorX(0);
for (var i = 0; i < count; i++) {
deleteLine();
}
}