Envelope constructor

Envelope({
  1. Address? from,
  2. required List<Address> to,
  3. required String subject,
  4. List? cc,
  5. List? bcc,
})

Implementation

Envelope({
  this.from,
  required this.to,
  required this.subject,
  this.cc,
  this.bcc,
});