LowlightEnhanceOptions
The low-light enhancement options.
class LowlightEnhanceOptions { const LowlightEnhanceOptions({this.mode, this.level}); @JsonKey(name: 'mode') final LowLightEnhanceMode? mode; @JsonKey(name: 'level') final LowLightEnhanceLevel? level; factory LowlightEnhanceOptions.fromJson(Map<String, dynamic> json) => _$LowlightEnhanceOptionsFromJson(json); Map<String, dynamic> toJson() => _$LowlightEnhanceOptionsToJson(this); }
Attributes
- level
- The low-light enhancement level. See LowLightEnhanceLevel.
- mode
- The low-light enhancement mode. See LowLightEnhanceMode.