copyWith method

CustomerRequestLinkDTO copyWith({
  1. String? agent,
  2. String? jiraRest,
  3. String? self,
  4. String? web,
})

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,
  );
}