copyWith method
AttachmentArchive
copyWith({
- List<
AttachmentArchiveEntry> ? entries, - bool? moreAvailable,
- int? totalEntryCount,
- int? totalNumberOfEntriesAvailable,
Implementation
AttachmentArchive copyWith(
{List<AttachmentArchiveEntry>? entries,
bool? moreAvailable,
int? totalEntryCount,
int? totalNumberOfEntriesAvailable}) {
return AttachmentArchive(
entries: entries ?? this.entries,
moreAvailable: moreAvailable ?? this.moreAvailable,
totalEntryCount: totalEntryCount ?? this.totalEntryCount,
totalNumberOfEntriesAvailable:
totalNumberOfEntriesAvailable ?? this.totalNumberOfEntriesAvailable,
);
}