MessageParams constructor

MessageParams(
  1. String from,
  2. List<String> to,
  3. String subject,
  4. MessageContent content, {
  5. List<String>? cc,
  6. List<String>? bcc,
  7. List<String>? tags,
  8. List<File>? attachments,
  9. List<String>? inline,
  10. MessageOptions? options,
})

Implementation

MessageParams(this.from, this.to, this.subject, this.content,
    {this.cc,
    this.bcc,
    this.tags,
    this.attachments,
    this.inline,
    this.options});