BillingAddress constructor

BillingAddress({
  1. String? firstName,
  2. String? lastName,
  3. String? phone,
  4. String? address,
  5. String? city,
  6. String? postalCode,
})

Creates a new instance of BillingAddress.

firstName is the first name of the customer. lastName is the last name of the customer. phone is the phone number of the customer. address is the address of the customer. city is the city of the customer. postalCode is the postal code of the customer.

Implementation

BillingAddress({
  this.firstName,
  this.lastName,
  this.phone,
  this.address,
  this.city,
  this.postalCode,
});