copyWith method

  1. @override
VariableComponentParameterValue copyWith({
  1. ID? componentVariableID,
  2. ModelParameterTypes? type,
  3. 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,
  );
}