moveLeft method

void moveLeft(
  1. int count
)

Implementation

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