stopAnimationTimer method

void stopAnimationTimer()

Implementation

void stopAnimationTimer() {
  if (isSearching.value || isStreamingExclusive.value) {
    return;
  }

  _disposeMap();
  if (animationTimer != null && animationTimer!.isActive) {
    animationTimer!.cancel();
  }
}