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