mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-25 08:50:40 +00:00
7 lines
127 B
Dart
7 lines
127 B
Dart
|
abstract class CameraEvent {
|
||
|
const CameraEvent();
|
||
|
}
|
||
|
|
||
|
class InitializeEvent extends CameraEvent {
|
||
|
const InitializeEvent();
|
||
|
}
|