copyWith method

  1. @override
JsonGetAttributeComponentParameterValue copyWith({
  1. ID? componentVariableID,
  2. ModelParameterTypes? type,
  3. JsonGetAttribute? jsonGetAttribute,
})
override

Implementation

@override
JsonGetAttributeComponentParameterValue copyWith({
  ID? componentVariableID,
  ModelParameterTypes? type,
  JsonGetAttribute? jsonGetAttribute,
}) {
  return JsonGetAttributeComponentParameterValue(
    componentVariableID: componentVariableID ?? this.componentVariableID,
    type: type ?? this.type,
    jsonGetAttribute: jsonGetAttribute ?? this.jsonGetAttribute,
  );
}