Address constructor

Address({
  1. String? firstName,
  2. String? lastName,
  3. String? addressLine1,
  4. String? addressLine2,
  5. String? city,
  6. String? state,
  7. String? country,
  8. String? postalCode,
  9. String? phoneNumber,
})

Implementation

Address(
    {this.firstName,
    this.lastName,
    this.addressLine1,
    this.addressLine2,
    this.city,
    this.state,
    this.country,
    this.postalCode,
    this.phoneNumber});