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