ChangeReport.fromJson constructor
ChangeReport.fromJson(
- Map json_
Implementation
ChangeReport.fromJson(core.Map json_)
: this(
configChanges:
(json_['configChanges'] as core.List?)
?.map(
(value) => ConfigChange.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);