OrderFulfillmentRecipient constructor

OrderFulfillmentRecipient({
  1. String? customerId,
  2. String? phoneNumber,
  3. Address? address,
  4. String? displayName,
  5. String? emailAddress,
})

Implementation

OrderFulfillmentRecipient(
    {this.customerId,
    this.phoneNumber,
    this.address,
    this.displayName,
    this.emailAddress});