resume method

void resume()

Resumes the timer from a paused state and restarts its visible progression. The timer continues from where it was paused, ensuring seamless continuation of its countdown or progression.

Implementation

void resume() {
  _startAddingNumbers();

  /// listener `statusListener`
  if (statusListener != null) {
    statusListener!(AppTimerStatus.start);
  }
}