Attachment constructor

Attachment({
  1. UserDetails? author,
  2. String? content,
  3. DateTime? created,
  4. String? filename,
  5. String? id,
  6. String? mimeType,
  7. String? self,
  8. int? size,
  9. String? thumbnail,
})

Implementation

Attachment(
    {this.author,
    this.content,
    this.created,
    this.filename,
    this.id,
    this.mimeType,
    this.self,
    this.size,
    this.thumbnail});