2023-06-20 06:43:49 +00:00
|
|
|
sealed class MeteringCommunicationState {
|
2022-12-14 17:33:38 +00:00
|
|
|
const MeteringCommunicationState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class InitState extends MeteringCommunicationState {
|
|
|
|
const InitState();
|
|
|
|
}
|
|
|
|
|
2023-06-20 06:43:49 +00:00
|
|
|
sealed class SourceState extends MeteringCommunicationState {
|
2022-12-14 17:33:38 +00:00
|
|
|
const SourceState();
|
|
|
|
}
|
|
|
|
|
2023-06-20 06:43:49 +00:00
|
|
|
sealed class ScreenState extends MeteringCommunicationState {
|
2022-12-14 17:33:38 +00:00
|
|
|
const ScreenState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class MeasureState extends SourceState {
|
|
|
|
const MeasureState();
|
|
|
|
}
|
|
|
|
|
2023-06-20 06:43:49 +00:00
|
|
|
sealed class MeasuredState extends ScreenState {
|
2023-05-16 09:47:53 +00:00
|
|
|
final double? ev100;
|
2022-12-14 17:33:38 +00:00
|
|
|
|
|
|
|
const MeasuredState(this.ev100);
|
2023-01-26 15:03:48 +00:00
|
|
|
}
|
2023-02-19 10:26:14 +00:00
|
|
|
|
|
|
|
class MeteringInProgressState extends MeasuredState {
|
|
|
|
const MeteringInProgressState(super.ev100);
|
2023-06-20 06:43:49 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
bool operator ==(Object other) {
|
|
|
|
if (identical(this, other)) return true;
|
|
|
|
if (other.runtimeType != runtimeType) return false;
|
|
|
|
return other is MeteringInProgressState && other.ev100 == ev100;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
int get hashCode => Object.hash(ev100, runtimeType);
|
2023-02-19 10:26:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class MeteringEndedState extends MeasuredState {
|
|
|
|
const MeteringEndedState(super.ev100);
|
2023-06-20 06:43:49 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
bool operator ==(Object other) {
|
|
|
|
if (identical(this, other)) return true;
|
|
|
|
if (other.runtimeType != runtimeType) return false;
|
|
|
|
return other is MeteringEndedState && other.ev100 == ev100;
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
int get hashCode => Object.hash(ev100, runtimeType);
|
2023-02-19 10:26:14 +00:00
|
|
|
}
|
2023-07-09 11:39:33 +00:00
|
|
|
|
|
|
|
class SettingsOpenedState extends SourceState {
|
|
|
|
const SettingsOpenedState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class SettingsClosedState extends SourceState {
|
|
|
|
const SettingsClosedState();
|
|
|
|
}
|