copyWith method
Implementation
ComponentParameters copyWith({
List<ComponentParameterValue>? values,
}) {
return ComponentParameters(
values: values ?? this.values,
);
}
ComponentParameters copyWith({
List<ComponentParameterValue>? values,
}) {
return ComponentParameters(
values: values ?? this.values,
);
}