Attachment constructor

Attachment({
  1. String? id,
  2. String? name,
  3. String? contentType,
  4. int? size,
  5. bool? isInline,
  6. DateTime? lastModifiedDateTime,
  7. String? contentId,
  8. String? contentBytes,
})

Implementation

Attachment({
  this.id,
  this.name,
  this.contentType,
  this.size,
  this.isInline,
  this.lastModifiedDateTime,
  this.contentId,
  this.contentBytes,
});