fromJson static method

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

Implementation

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