directionsLanguage property

String directionsLanguage

Directions language.

Implementation

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