mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-24 08:20:40 +00:00
24 lines
512 B
Dart
24 lines
512 B
Dart
|
abstract class CameraContainerEvent {
|
||
|
const CameraContainerEvent();
|
||
|
}
|
||
|
|
||
|
class InitializeEvent extends CameraContainerEvent {
|
||
|
const InitializeEvent();
|
||
|
}
|
||
|
|
||
|
class ZoomChangedEvent extends CameraContainerEvent {
|
||
|
final double value;
|
||
|
|
||
|
const ZoomChangedEvent(this.value);
|
||
|
}
|
||
|
|
||
|
class ExposureOffsetChangedEvent extends CameraContainerEvent {
|
||
|
final double value;
|
||
|
|
||
|
const ExposureOffsetChangedEvent(this.value);
|
||
|
}
|
||
|
|
||
|
class ExposureOffsetResetEvent extends CameraContainerEvent {
|
||
|
const ExposureOffsetResetEvent();
|
||
|
}
|