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