Address constructor

Address({
  1. int? type,
  2. String? customLabel,
  3. List<String>? addressLine,
  4. String? pobox,
  5. String? neighborhood,
  6. String? city,
  7. String? region,
  8. String? postcode,
  9. String? country,
  10. String? sortingCode,
  11. String? recipient,
  12. String? phone,
  13. String? organization,
  14. String? dependentLocality,
})

Implementation

Address(
    {this.type,
    this.customLabel,
    this.addressLine,
    this.pobox,
    this.neighborhood,
    this.city,
    this.region,
    this.postcode,
    this.country,
    this.sortingCode,
    this.recipient,
    this.phone,
    this.organization,
    this.dependentLocality});