fromJson static method
Implementation
static VariableComponentParameterValue fromJson(Map<String, dynamic> json) {
return VariableComponentParameterValue(
componentVariableID: json['component_variable_id'],
type: ModelParameterTypes.variable,
variableID: json['variable_id'],
);
}