From f7bbac7adce7cc55b99cdd51f107dc6bf5f0b7d7 Mon Sep 17 00:00:00 2001 From: "k.mannweiler" <2012491@stud.hs-mannheim.de> Date: Fri, 3 Mar 2023 18:27:49 +0100 Subject: [PATCH] Remove Print calls --- lib/providers/timer_provider.dart | 2 -- 1 file changed, 2 deletions(-) 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;