Attachment constructor

const Attachment(
  1. String content,
  2. String filename, {
  3. String? type,
  4. String? disposition,
  5. String? contentId,
})

Implementation

const Attachment(
  this.content,
  this.filename, {
  this.type,
  this.disposition,
  this.contentId,
});