CrossmintCheckoutPhysicalRecipient constructor

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

Creates a physical-only recipient.

Implementation

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