copyWith method
TextComponentParameterValue
copyWith({
- ID? componentVariableID,
- ModelParameterTypes? type,
- String? value,
override
Implementation
@override
TextComponentParameterValue copyWith({
ID? componentVariableID,
ModelParameterTypes? type,
String? value,
}) {
return TextComponentParameterValue(
componentVariableID: componentVariableID ?? this.componentVariableID,
type: type ?? this.type,
value: value ?? this.value,
);
}