InlineObjectProperties.fromJson constructor
InlineObjectProperties.fromJson(
- Map json_
Implementation
InlineObjectProperties.fromJson(core.Map json_)
: this(
embeddedObject: json_.containsKey('embeddedObject')
? EmbeddedObject.fromJson(json_['embeddedObject']
as core.Map<core.String, core.dynamic>)
: null,
);