loadJson static method
Implementation
static Future<List<CountryCodeModel>> loadJson() async {
List<CountryCodeModel> listCountryCodeModel =
List<CountryCodeModel>.from(countries.map((model) => CountryCodeModel.fromJson(model)));
return listCountryCodeModel;
}