OrderCustomer constructor

OrderCustomer({
  1. String? fullName,
  2. String? invoiceReceivingEmail,
  3. OrderCustomerLoyaltyInfo? loyaltyInfo,
  4. OrderCustomerMarketingRightsInfo? marketingRightsInfo,
})

Implementation

OrderCustomer({
  this.fullName,
  this.invoiceReceivingEmail,
  this.loyaltyInfo,
  this.marketingRightsInfo,
});