nextCountryCodeISO property

String get nextCountryCodeISO

Get the ISO 3166-1 alpha-3 country code for the next navigation instruction.

Empty string means no country. See: http://en.wikipedia.org/wiki/ISO_3166-1 for the list of codes.

Returns

  • The ISO 3166-1 alpha-3 country code for the next navigation instruction

Throws

  • An exception if it fails.

Implementation

String get nextCountryCodeISO {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'NavigationInstruction',
    'getNextCountryCodeISO',
  );

  return resultString['result'];
}