resumeTimer method
void
resumeTimer()
Resume the paused timer
Implementation
void resumeTimer() {
if (!_isPaused) return;
_isPaused = false;
_startTimerInternal();
_onResumeCallback?.call();
HapticFeedback.forCountdownResume();
notifyListeners();
}