PostalCodeResponse constructor

PostalCodeResponse({
  1. int? districtID,
  2. String? districtName,
  3. int? subDistrictID,
  4. String? subDistrictName,
  5. int? postalCode,
})

Implementation

PostalCodeResponse(
    {this.districtID,
    this.districtName,
    this.subDistrictID,
    this.subDistrictName,
    this.postalCode});