start method

void start()

Starts the Loading Bar

Implementation

void start() {
  Console.hideCursor();
  _timer = Timer.periodic(const Duration(milliseconds: 75), (timer) {
    nextPosition();
    update();
  });
}