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