LowlightEnhanceOptions
暗光增强选项。
Dart
class LowlightEnhanceOptions {
const LowlightEnhanceOptions({this.mode, this.level});
(name: 'mode')
final LowLightEnhanceMode? mode;
(name: 'level')
final LowLightEnhanceLevel? level;
factory LowlightEnhanceOptions.fromJson(Map<String, dynamic> json) =>
_$LowlightEnhanceOptionsFromJson(json);
Map<String, dynamic> toJson() => _$LowlightEnhanceOptionsToJson(this);
}
level
暗光增强等级。详见 LowLightEnhanceLevel。
mode
暗光增强模式。详见 LowLightEnhanceMode。