countryCodes property

List<String> get countryCodes

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:

Implementation

List<String> get countryCodes {
  final OperationResult resultString = objectMethod(
    pointerId,
    'ContentStoreItem',
    'getCountryCodes',
  );
  return resultString['result'].cast<String>();
}