copyWith method
Implementation
AttachmentCreateResultDTO copyWith(
{PagedDTOAttachmentDTO? attachments, CommentDTO? comment}) {
return AttachmentCreateResultDTO(
attachments: attachments ?? this.attachments,
comment: comment ?? this.comment,
);
}