stop method

void stop()

Stops the Timer

Implementation

void stop() {
  Console.adapter.echoMode = true;
  if (_watch != null) {
    _watch!.stop();
  }
  if (_updateTimer != null) {
    _updateTimer!.cancel();
  }
}