stopTimer method

void stopTimer()

Implementation

void stopTimer() {
  if (timerIsolate != null) {
    timerIsolate!.kill(priority: Isolate.immediate);
    timerIsolate = null;
  }
}