MailRecipient constructor

MailRecipient({
  1. String? name,
  2. required String email,
})

Implementation

MailRecipient({
  this.name,
  required this.email,
});