EmailRecipients constructor

EmailRecipients({
  1. List<Recipient> to = const [],
  2. List<Recipient> cc = const [],
  3. List<Recipient> bcc = const [],
})

Returns a new EmailRecipients instance.

Implementation

EmailRecipients({
  this.to = const [],
  this.cc = const [],
  this.bcc = const [],
});