parseObjectJSON static method
Implementation
static Map<String, ToolValue> parseObjectJSON(String json) {
final value = fromJSONString(json);
return value.hasObjectValue()
? Map.unmodifiable(value.objectValue.fields)
: const <String, ToolValue>{};
}