CountryAvailable.fromJson constructor

CountryAvailable.fromJson(
  1. Map<String, dynamic> json
)

Implementation

CountryAvailable.fromJson(Map<String, dynamic> json) {
  countryName = json["countryName"];
  iso = json["iso"];
  homesCountryPictureUrl = json["homesCountryPictureUrl"];
  lat = json["lat"];
  lng = json["lng"];
  zoom = json["zoom"];
}