returnDirections property
Whether or not turn-by-turn directions for the closest facility routes are to be returned.
Implementation
bool get returnDirections {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ClosestFacilityParameters_getReturnDirections(
_handle,
errorHandler,
);
});
}
Implementation
set returnDirections(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ClosestFacilityParameters_setReturnDirections(
_handle,
value,
errorHandler,
);
});
}