stop method
void
stop()
Stop all trackers and periodic updates.
Implementation
void stop() {
if (!_isRunning) return;
_isRunning = false;
_updateTimer?.cancel();
_updateTimer = null;
fpsTracker.stop();
}
Stop all trackers and periodic updates.
void stop() {
if (!_isRunning) return;
_isRunning = false;
_updateTimer?.cancel();
_updateTimer = null;
fpsTracker.stop();
}