returnDirections property
Return directions status.
Implementation
bool get returnDirections {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_RouteParameters_getReturnDirections(
_handle,
errorHandler,
);
});
}
Implementation
set returnDirections(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_RouteParameters_setReturnDirections(
_handle,
value,
errorHandler,
);
});
}