CountryAvailable constructor

CountryAvailable({
  1. String? countryName,
  2. String? iso,
  3. String? homesCountryPictureUrl,
  4. dynamic lat,
  5. dynamic lng,
  6. dynamic zoom,
})

Implementation

CountryAvailable({
  this.countryName,
  this.iso,
  this.homesCountryPictureUrl,
  this.lat,
  this.lng,
  this.zoom,
});