InlineObjectProperties.fromJson constructor

InlineObjectProperties.fromJson(
  1. 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,
    );