Destination constructor

Destination({
  1. List<String>? bccAddresses,
  2. List<String>? ccAddresses,
  3. List<String>? toAddresses,
})

Implementation

Destination({
  this.bccAddresses,
  this.ccAddresses,
  this.toAddresses,
});