copyWith method
Implementation
AttachmentArchiveImpl copyWith(
{List<AttachmentArchiveEntry>? entries, int? totalEntryCount}) {
return AttachmentArchiveImpl(
entries: entries ?? this.entries,
totalEntryCount: totalEntryCount ?? this.totalEntryCount,
);
}