countryCodeISO property
Get ISO 3166-1 alpha-3 country code for the navigation instruction.
Empty string means no country.
Returns
- Country ISO code. See: http://en.wikipedia.org/wiki/ISO_3166-1 for the list of codes.
Throws
- An exception if it fails.
Implementation
String get countryCodeISO {
final OperationResult resultString = objectMethod(
_pointerId,
'RouteInstructionBase',
'getCountryCodeISO',
);
return resultString['result'];
}