toGeoSpatialCountryCode method

GeoSpatialCountryCode toGeoSpatialCountryCode()

Implementation

GeoSpatialCountryCode toGeoSpatialCountryCode() {
  switch (this) {
    case 'US':
      return GeoSpatialCountryCode.us;
  }
  throw Exception('$this is not known in enum GeoSpatialCountryCode');
}