Customer constructor

Customer({
  1. String? firstName,
  2. String? lastName,
  3. String? building,
  4. String? floor,
  5. String? apartment,
  6. String? city,
  7. String? state,
  8. String? country,
  9. String? email,
  10. String? phoneNumber,
  11. String? postalCode,
})

Implementation

Customer({
  this.firstName,
  this.lastName,
  this.building,
  this.floor,
  this.apartment,
  this.city,
  this.state,
  this.country,
  this.email,
  this.phoneNumber,
  this.postalCode,
});