Email constructor

Email({
  1. List<Attachment> attachments,
  2. List<EmailAddress> bcc,
  3. List<EmailAddress> cc,
  4. EmailAddress from,
  5. String html,
  6. EmailAddress replyTo,
  7. String subject,
  8. String text,
  9. List<EmailAddress> to,
})

Implementation

Email(
    {this.attachments,
    this.bcc,
    this.cc,
    this.from,
    this.html,
    this.replyTo,
    this.subject,
    this.text,
    this.to});