countryCodeListToJson function

List<String> countryCodeListToJson(
  1. List<CountryCode>? countryCode
)

Implementation

List<String> countryCodeListToJson(List<enums.CountryCode>? countryCode) {
  if (countryCode == null) {
    return [];
  }

  return countryCode.map((e) => enums.$CountryCodeMap[e]!).toList();
}