directionsLanguage property

String directionsLanguage

Directions language.

The language of the output directions e.g. "en-US".

Implementation

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