Attachment constructor

Attachment({
  1. String? id,
  2. String? status,
  3. String? title,
  4. DateTime? createdAt,
  5. String? pageId,
  6. String? blogPostId,
  7. String? customContentId,
  8. String? mediaType,
  9. String? mediaTypeDescription,
  10. String? comment,
  11. String? fileId,
  12. int? fileSize,
  13. String? webuiLink,
  14. String? downloadLink,
  15. Version? version,
  16. AttachmentLinks? links,
})

Implementation

Attachment(
    {this.id,
    this.status,
    this.title,
    this.createdAt,
    this.pageId,
    this.blogPostId,
    this.customContentId,
    this.mediaType,
    this.mediaTypeDescription,
    this.comment,
    this.fileId,
    this.fileSize,
    this.webuiLink,
    this.downloadLink,
    this.version,
    this.links});