EmailAttachment constructor

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

Implementation

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