Created first action and basic timer reducer

Signed-off-by: Andreas Fahrecker <AndreasFahrecker@gmail.com>
This commit is contained in:
Andreas Fahrecker
2020-10-12 11:22:17 +02:00
parent e004529eb8
commit e096653b2e
3 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import 'package:time_progress_calculator/models/timer.dart';
abstract class Action {}
class UpdateTimerAction extends Action {
final Timer updatedTimer;
UpdateTimerAction(this.updatedTimer);
}