countryCodes property
Get the country code (ISO 3166-1 alpha-3) list of the product as text.
The list is empty for non-road-map products.
Returns
- A list of ISO 3166-1 alpha-3 country codes, or an empty list when not applicable.
Also see:
- ISOCodeConversions - Convert country ISO codes between different formats.
- MapDetails - Access country flag images and other map details.
Implementation
List<String> get countryCodes {
final OperationResult resultString = objectMethod(
pointerId,
'ContentStoreItem',
'getCountryCodes',
);
return resultString['result'].cast<String>();
}