Contact constructor

Contact({
  1. String? emailAddress,
  2. PersonNameComponents? name,
  3. String? phoneNumber,
  4. PostalAddress? postalAddress,
})

Encapsulates contact information needed for billing and shipping.

Implementation

Contact({
  this.emailAddress,
  this.name,
  this.phoneNumber,
  this.postalAddress,
});