stopAnimationTimer method
Implementation
void stopAnimationTimer() {
if (isSearching.value || isStreamingExclusive.value) {
return;
}
_disposeMap();
if (animationTimer != null && animationTimer!.isActive) {
animationTimer!.cancel();
}
}