mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
20 lines
340 B
Dart
20 lines
340 B
Dart
|
sealed class TimerEvent {
|
||
|
const TimerEvent();
|
||
|
}
|
||
|
|
||
|
class StartTimerEvent extends TimerEvent {
|
||
|
const StartTimerEvent();
|
||
|
}
|
||
|
|
||
|
class StopTimerEvent extends TimerEvent {
|
||
|
const StopTimerEvent();
|
||
|
}
|
||
|
|
||
|
class TimerEndedEvent extends TimerEvent {
|
||
|
const TimerEndedEvent();
|
||
|
}
|
||
|
|
||
|
class ResetTimerEvent extends TimerEvent {
|
||
|
const ResetTimerEvent();
|
||
|
}
|