fromJson static method

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

Implementation

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