fromJson static method

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

Implementation

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