2022-12-16 08:08:12 +00:00
|
|
|
import 'package:lightmeter/data/models/exposure_pair.dart';
|
2022-12-18 09:03:41 +00:00
|
|
|
import 'package:lightmeter/data/models/photography_values/iso_value.dart';
|
|
|
|
import 'package:lightmeter/data/models/photography_values/nd_value.dart';
|
2022-10-29 18:02:45 +00:00
|
|
|
|
|
|
|
class MeteringState {
|
|
|
|
final double ev;
|
|
|
|
final double evCompensation;
|
2022-12-01 20:49:06 +00:00
|
|
|
final IsoValue iso;
|
2022-12-04 19:12:52 +00:00
|
|
|
final NdValue nd;
|
2022-10-29 18:02:45 +00:00
|
|
|
final List<ExposurePair> exposurePairs;
|
|
|
|
|
|
|
|
const MeteringState({
|
|
|
|
required this.ev,
|
|
|
|
required this.evCompensation,
|
|
|
|
required this.iso,
|
|
|
|
required this.nd,
|
|
|
|
required this.exposurePairs,
|
|
|
|
});
|
|
|
|
|
|
|
|
ExposurePair? get fastest => exposurePairs.isEmpty ? null : exposurePairs.first;
|
|
|
|
ExposurePair? get slowest => exposurePairs.isEmpty ? null : exposurePairs.last;
|
|
|
|
}
|