fromJson static method

JsonGetAttributeComponentParameterValue fromJson(
  1. Map<String, dynamic> json
)
override

Implementation

static JsonGetAttributeComponentParameterValue fromJson(
    Map<String, dynamic> json) {
  return JsonGetAttributeComponentParameterValue(
    componentVariableID: json['component_variable_id'],
    type: ModelParameterTypes.jsonGetAttribute,
    jsonGetAttribute: JsonGetAttribute.fromJson(json['json_get_attribute']),
  );
}