countryCodeListToJson function
Implementation
List<String> countryCodeListToJson(List<enums.CountryCode>? countryCode) {
if (countryCode == null) {
return [];
}
return countryCode.map((e) => enums.$CountryCodeMap[e]!).toList();
}
List<String> countryCodeListToJson(List<enums.CountryCode>? countryCode) {
if (countryCode == null) {
return [];
}
return countryCode.map((e) => enums.$CountryCodeMap[e]!).toList();
}