AutomaticImageImprovements.fromJson constructor
AutomaticImageImprovements.fromJson(
- Map json_
Implementation
AutomaticImageImprovements.fromJson(core.Map json_)
: this(
accountImageImprovementsSettings:
json_.containsKey('accountImageImprovementsSettings')
? ImageImprovementsAccountLevelSettings.fromJson(
json_['accountImageImprovementsSettings']
as core.Map<core.String, core.dynamic>,
)
: null,
effectiveAllowAutomaticImageImprovements:
json_['effectiveAllowAutomaticImageImprovements'] as core.bool?,
);