stop method
void
stop()
Stops the Timer
Implementation
void stop() {
console.raw_console.echo_mode = true;
if (_watch != null) {
_watch!.stop();
}
if (_updateTimer != null) {
_updateTimer!.cancel();
}
}