fromJson static method

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

Implementation

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