copyWith method
Implementation
CustomerRequestLinkDTO copyWith(
{String? agent, String? jiraRest, String? self, String? web}) {
return CustomerRequestLinkDTO(
agent: agent ?? this.agent,
jiraRest: jiraRest ?? this.jiraRest,
self: self ?? this.self,
web: web ?? this.web,
);
}