Recipient constructor

Recipient({
  1. required String email,
  2. String? name,
  3. RecipientType type = RecipientType.to,
})

Implementation

Recipient({
  required this.email,
  this.name,
  this.type = RecipientType.to,
});