AttachmentArchiveMetadataReadable constructor

AttachmentArchiveMetadataReadable({
  1. List<AttachmentArchiveItemReadable>? entries,
  2. int? id,
  3. String? mediaType,
  4. String? name,
  5. int? totalEntryCount,
})

Implementation

AttachmentArchiveMetadataReadable(
    {List<AttachmentArchiveItemReadable>? entries,
    this.id,
    this.mediaType,
    this.name,
    this.totalEntryCount})
    : entries = entries ?? [];