copyWith method

AttachmentArchiveImpl copyWith({
  1. List<AttachmentArchiveEntry>? entries,
  2. int? totalEntryCount,
})

Implementation

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