Recipient constructor

Recipient({
  1. required String rawValue,
  2. required String emailAddress,
  3. String? name,
})

Returns a new Recipient instance.

Implementation

Recipient({
  required this.rawValue,
  required this.emailAddress,
  this.name,
});