directionText property

String directionText

Direction text.

The textual representation of the direction (e.g. Turn right on Main Street).

Implementation

String get directionText {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_DirectionManeuver_getDirectionText(
        _handle, errorHandler);
  });
  return stringHandle.toDartString();
}