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