copyWith method

ComponentParameterField copyWith({
  1. ID? variableID,
  2. dynamic passingValue,
})

Implementation

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