fromJson static method
Implementation
static ComponentParameterField fromJson(Map<String, dynamic> json) {
return ComponentParameterField(
variableID: json['variable_id'],
passingValue: json['value'],
);
}
static ComponentParameterField fromJson(Map<String, dynamic> json) {
return ComponentParameterField(
variableID: json['variable_id'],
passingValue: json['value'],
);
}