copyWith method

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