fromJson static method
Implementation
static JsonComponentParameterValue fromJson(Map<String, dynamic> json) {
return JsonComponentParameterValue(
componentVariableID: json['component_variable_id'],
type: ModelParameterTypes.staticJson,
value: json['value'],
);
}