directionsLanguage property

String directionsLanguage

Directions language.

The language used to generate driving directions text instructions.

Implementation

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