InlineObjectPropertiesSuggestionState.fromJson constructor

InlineObjectPropertiesSuggestionState.fromJson(
  1. Map json_
)

Implementation

InlineObjectPropertiesSuggestionState.fromJson(core.Map json_)
  : this(
      embeddedObjectSuggestionState:
          json_.containsKey('embeddedObjectSuggestionState')
          ? EmbeddedObjectSuggestionState.fromJson(
              json_['embeddedObjectSuggestionState']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );