AddressCity constructor

AddressCity({
  1. int? id,
  2. String? city,
  3. String? cityid,
  4. String? provinceid,
  5. String? lng,
  6. String? lat,
  7. List<AddressDistrict>? district,
})

Implementation

AddressCity({
  this.id,
  this.city,
  this.cityid,
  this.provinceid,
  this.lng,
  this.lat,
  this.district,
});