copyWith method
      
CustomerRequestActionsDTO
copyWith({ 
    
    
- CustomerRequestActionDTO? addAttachment,
- CustomerRequestActionDTO? addComment,
- CustomerRequestActionDTO? addParticipant,
- CustomerRequestActionDTO? removeParticipant,
Implementation
CustomerRequestActionsDTO copyWith(
    {CustomerRequestActionDTO? addAttachment,
    CustomerRequestActionDTO? addComment,
    CustomerRequestActionDTO? addParticipant,
    CustomerRequestActionDTO? removeParticipant}) {
  return CustomerRequestActionsDTO(
    addAttachment: addAttachment ?? this.addAttachment,
    addComment: addComment ?? this.addComment,
    addParticipant: addParticipant ?? this.addParticipant,
    removeParticipant: removeParticipant ?? this.removeParticipant,
  );
}