CrossmintCheckoutEmailRecipient constructor

const CrossmintCheckoutEmailRecipient({
  1. required String email,
  2. CrossmintCheckoutPhysicalAddress? physicalAddress,
})

Creates an email recipient.

Implementation

const CrossmintCheckoutEmailRecipient({
  required this.email,
  this.physicalAddress,
});