moveLeft method
Implementation
void moveLeft(int count) {
var _count = count;
while (_count > 0) {
logger.write('\b');
position--;
_count--;
}
}
void moveLeft(int count) {
var _count = count;
while (_count > 0) {
logger.write('\b');
position--;
_count--;
}
}