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