start method

void start()

Start the progress bar

Implementation

void start() {
  if (_started) return;
  _started = true;
  // Hide cursor
  stdout.write('\x1B[?25l');
  _render();
}