countryCodeISO property

String get countryCodeISO

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

Empty string indicates no country information is available.

Returns

  • String: ISO 3166-1 alpha-3 country code (e.g., USA, NLD) or empty string when unknown.

Implementation

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

  return resultString['result'];
}