returnPolylineBarriers property
Whether or not to return the polyline barriers used in the closest facility task.
Implementation
bool get returnPolylineBarriers {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ClosestFacilityParameters_getReturnPolylineBarriers(
_handle,
errorHandler,
);
});
}
Implementation
set returnPolylineBarriers(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ClosestFacilityParameters_setReturnPolylineBarriers(
_handle,
value,
errorHandler,
);
});
}