diff --git a/lib/providers/timer_provider.dart b/lib/providers/timer_provider.dart index f5a75c1..f355d7d 100644 --- a/lib/providers/timer_provider.dart +++ b/lib/providers/timer_provider.dart @@ -8,7 +8,6 @@ class TimerProvider extends ChangeNotifier { int get elapsedSeconds => _timer != null ? _timer!.tick : 0; void startTimer(Duration duration) { - print('started'); started = true; _timer = Timer.periodic(const Duration(seconds: 1), ((timer) { if (timer.tick >= duration.inSeconds) { @@ -27,7 +26,6 @@ class TimerProvider extends ChangeNotifier { @override void dispose() { - print('disposed'); started = false; _timer?.cancel(); _timer = null;