copyWith method
Implementation
ComponentParameterField copyWith({
ID? variableID,
dynamic passingValue,
}) {
return ComponentParameterField(
variableID: variableID ?? this.variableID,
passingValue: passingValue ?? this.passingValue,
);
}