copyWith method
JsonGetAttributeComponentParameterValue
copyWith({
- ID? componentVariableID,
- ModelParameterTypes? type,
- 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,
);
}