copyWith method
Implementation
AttachmentArchiveMetadataReadable copyWith(
    {List<AttachmentArchiveItemReadable>? entries,
    int? id,
    String? mediaType,
    String? name,
    int? totalEntryCount}) {
  return AttachmentArchiveMetadataReadable(
    entries: entries ?? this.entries,
    id: id ?? this.id,
    mediaType: mediaType ?? this.mediaType,
    name: name ?? this.name,
    totalEntryCount: totalEntryCount ?? this.totalEntryCount,
  );
}