returnRoutes property

bool returnRoutes

Return routes.

Implementation

bool get returnRoutes {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_RouteParameters_getReturnRoutes(
        _handle, errorHandler);
  });
}
void returnRoutes=(bool value)

Implementation

set returnRoutes(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_RouteParameters_setReturnRoutes(
        _handle, value, errorHandler);
  });
}