returnStops property

bool returnStops

Return stops.

Implementation

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

Implementation

set returnStops(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_RouteParameters_setReturnStops(
        _handle, value, errorHandler);
  });
}