start method

void start([
  1. int place = 1
])

Starts the Timer

Implementation

void start([int place = 1]) {
  Console.adapter.echoMode = false;
  _watch = Stopwatch();
  _updateTimer = Timer.periodic(Duration(milliseconds: 10), (timer) {
    update(place);
  });
  _watch!.start();
}