2024-04-30 14:32:01 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
@immutable
|
2024-04-30 19:50:09 +00:00
|
|
|
sealed class TimerState {
|
2024-05-03 09:16:29 +00:00
|
|
|
const TimerState();
|
2024-04-30 14:32:01 +00:00
|
|
|
}
|
|
|
|
|
2024-04-30 19:50:09 +00:00
|
|
|
class TimerStoppedState extends TimerState {
|
2024-05-03 09:16:29 +00:00
|
|
|
const TimerStoppedState();
|
2024-04-30 14:32:01 +00:00
|
|
|
}
|
|
|
|
|
2024-04-30 19:50:09 +00:00
|
|
|
class TimerResumedState extends TimerState {
|
2024-05-03 09:16:29 +00:00
|
|
|
const TimerResumedState();
|
2024-04-30 14:32:01 +00:00
|
|
|
}
|
2024-04-30 20:45:46 +00:00
|
|
|
|
|
|
|
class TimerResetState extends TimerStoppedState {
|
2024-05-03 09:16:29 +00:00
|
|
|
const TimerResetState();
|
2024-04-30 20:45:46 +00:00
|
|
|
}
|