countryCodeToJson function

String? countryCodeToJson(
  1. CountryCode? countryCode
)

Implementation

String? countryCodeToJson(enums.CountryCode? countryCode) {
  return enums.$CountryCodeMap[countryCode];
}