text property

String text

Direction string text.

The text for directions.

Implementation

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