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