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