2024-04-30 19:50:09 +00:00
|
|
|
sealed class TimerEvent {
|
|
|
|
const TimerEvent();
|
2024-04-30 14:32:01 +00:00
|
|
|
}
|
|
|
|
|
2024-04-30 19:50:09 +00:00
|
|
|
class StartTimerEvent extends TimerEvent {
|
|
|
|
const StartTimerEvent();
|
2024-04-30 14:32:01 +00:00
|
|
|
}
|
|
|
|
|
2024-04-30 19:50:09 +00:00
|
|
|
class StopTimerEvent extends TimerEvent {
|
|
|
|
const StopTimerEvent();
|
2024-04-30 14:32:01 +00:00
|
|
|
}
|
|
|
|
|
2024-05-03 10:43:45 +00:00
|
|
|
class TimerEndedEvent extends TimerEvent {
|
|
|
|
const TimerEndedEvent();
|
2024-04-30 14:32:01 +00:00
|
|
|
}
|
|
|
|
|
2024-04-30 19:50:09 +00:00
|
|
|
class ResetTimerEvent extends TimerEvent {
|
|
|
|
const ResetTimerEvent();
|
2024-04-30 14:32:01 +00:00
|
|
|
}
|