MailOptions constructor

MailOptions({
  1. String subject = '',
  2. List<String> recipients = const <String>[],
  3. List<String> ccRecipients = const <String>[],
  4. List<String> bccRecipients = const <String>[],
  5. String body = '',
  6. List<String> attachments = const <String>[],
  7. bool isHTML = false,
  8. String? appSchema,
})

Implementation

MailOptions({
  this.subject = '',
  this.recipients = const <String>[],
  this.ccRecipients = const <String>[],
  this.bccRecipients = const <String>[],
  this.body = '',
  this.attachments = const <String>[],
  this.isHTML = false,
  this.appSchema,
});