showTimer method

void showTimer()

Show the timer if it was hidden

Implementation

void showTimer() {
  if (isActive) {
    _isVisible = true;
    notifyListeners();
  }
}