countryCodeISO property

String get countryCodeISO

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

Empty string means no country.

Returns

Throws

  • An exception if it fails.

Implementation

String get countryCodeISO {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'RouteInstructionBase',
    'getCountryCodeISO',
  );

  return resultString['result'];
}