Recipient constructor

Recipient({
  1. String? deliveryType,
  2. String? email,
  3. String? kind,
})

Implementation

Recipient({
  this.deliveryType,
  this.email,
  this.kind,
});