currentStreetName property

String get currentStreetName

Get the current street name.

Returns

  • The current street name

Throws

  • An exception if it fails.

Implementation

String get currentStreetName {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'NavigationInstruction',
    'getCurrentStreetName',
  );

  return resultString['result'];
}