returnStops property
Return stops.
Implementation
bool get returnStops {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_RouteParameters_getReturnStops(
_handle,
errorHandler,
);
});
}
Implementation
set returnStops(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_RouteParameters_setReturnStops(
_handle,
value,
errorHandler,
);
});
}