mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
13 lines
429 B
Dart
13 lines
429 B
Dart
enum CameraFeature {
|
|
spotMetering,
|
|
histogram,
|
|
}
|
|
|
|
typedef CameraFeaturesConfig = Map<CameraFeature, bool>;
|
|
|
|
extension CameraFeaturesConfigJson on CameraFeaturesConfig {
|
|
static CameraFeaturesConfig fromJson(Map<String, dynamic> data) =>
|
|
<CameraFeature, bool>{for (final f in CameraFeature.values) f: data[f.name] as bool? ?? false};
|
|
|
|
Map<String, dynamic> toJson() => map((key, value) => MapEntry(key.name, value));
|
|
}
|