AddressDistrict constructor

AddressDistrict({
  1. int? id,
  2. String? area,
  3. String? areaid,
  4. String? cityid,
  5. String? lng,
  6. String? lat,
})

Implementation

AddressDistrict({
  this.id,
  this.area,
  this.areaid,
  this.cityid,
  this.lng,
  this.lat,
});