MessageCreateOptions constructor

const MessageCreateOptions({
  1. String to = '',
  2. String cc = '',
  3. String from = '',
  4. bool send = false,
  5. String subject = '',
  6. String text = '',
  7. String html = '',
  8. List<Attachment> attachments = const [],
})

Implementation

const MessageCreateOptions({
  this.to = '',
  this.cc = '',
  this.from = '',
  this.send = false,
  this.subject = '',
  this.text = '',
  this.html = '',
  this.attachments = const [],
});