AddressInfo constructor

AddressInfo({
  1. String? name,
  2. String? tel,
  3. String? province,
  4. String? city,
  5. String? county,
  6. int? provinceId,
  7. int? cityId,
  8. int? countyId,
  9. String? addressDetail,
  10. String? postalCode,
  11. bool? isDefault,
})

Implementation

AddressInfo(
    {this.name,
    this.tel,
    this.province,
    this.city,
    this.county,
    this.provinceId,
    this.cityId,
    this.countyId,
    this.addressDetail,
    this.postalCode,
    this.isDefault});