Attachment constructor

Attachment({
  1. String? createTime,
  2. Actor? creator,
  3. String? filename,
  4. String? mimeType,
  5. String? name,
  6. String? sizeBytes,
})

Implementation

Attachment({
  this.createTime,
  this.creator,
  this.filename,
  this.mimeType,
  this.name,
  this.sizeBytes,
});