m3_lightmeter/lib/screens/metering/metering_event.dart

16 lines
305 B
Dart
Raw Normal View History

2022-12-04 19:00:43 +00:00
import 'package:lightmeter/models/photography_value.dart';
2022-10-29 18:02:45 +00:00
abstract class MeteringEvent {
const MeteringEvent();
}
2022-12-04 19:00:43 +00:00
class IsoChangedEvent extends MeteringEvent {
final IsoValue isoValue;
const IsoChangedEvent(this.isoValue);
}
2022-10-29 18:02:45 +00:00
class MeasureEvent extends MeteringEvent {
const MeasureEvent();
}