Address constructor

Address({
  1. String? firstName,
  2. String? lastName,
  3. String? email,
  4. String? phone,
  5. String? address,
  6. String? city,
  7. String? postalCode,
  8. String? countryCode,
})

Implementation

Address({
  this.firstName,
  this.lastName,
  this.email,
  this.phone,
  this.address,
  this.city,
  this.postalCode,
  this.countryCode,
});