AddressProvince constructor

AddressProvince({
  1. int? id,
  2. String? provinceid,
  3. String? province,
  4. String? lng,
  5. String? lat,
  6. List<AddressCity>? cities,
})

Implementation

AddressProvince({
  this.id,
  this.provinceid,
  this.province,
  this.lng,
  this.lat,
  this.cities,
});