nextNextStreetName property

String get nextNextStreetName

Get the next next street name.

Returns

  • The next street name

Throws

  • An exception if it fails.

Implementation

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

  return resultString['result'];
}