mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-03-14 14:20:39 +00:00
22 lines
435 B
Dart
22 lines
435 B
Dart
![]() |
abstract class MeteringCommunicationEvent {
|
||
|
const MeteringCommunicationEvent();
|
||
|
}
|
||
|
|
||
|
abstract class SourceEvent extends MeteringCommunicationEvent {
|
||
|
const SourceEvent();
|
||
|
}
|
||
|
|
||
|
abstract class ScreenEvent extends MeteringCommunicationEvent {
|
||
|
const ScreenEvent();
|
||
|
}
|
||
|
|
||
|
class MeasureEvent extends ScreenEvent {
|
||
|
const MeasureEvent();
|
||
|
}
|
||
|
|
||
|
class MeasuredEvent extends SourceEvent {
|
||
|
final double ev100;
|
||
|
|
||
|
const MeasuredEvent(this.ev100);
|
||
|
}
|