mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 23:40:41 +00:00
14 lines
429 B
Dart
14 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));
|
||
|
}
|