nextNextStreetName property

String get nextNextStreetName

Street name for the road after the next turn.

Returns the name of the street two maneuvers ahead. May return an empty string if the street has no assigned name or if information is unavailable. Always check hasNextNextTurnInfo before relying on this value.

Returns

  • (String) Street name, or empty string if not available.

See also:

Implementation

String get nextNextStreetName {
  final OperationResult resultString = objectMethod(
    pointerId,
    'NavigationInstruction',
    'getNextNextStreetName',
  );

  return resultString['result'];
}