returnRoutes property
Return routes.
Implementation
bool get returnRoutes {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_RouteParameters_getReturnRoutes(
_handle,
errorHandler,
);
});
}
Implementation
set returnRoutes(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_RouteParameters_setReturnRoutes(
_handle,
value,
errorHandler,
);
});
}