returnPointBarriers property
Whether or not to return the point barriers used in the closest facility task.
Implementation
bool get returnPointBarriers {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ClosestFacilityParameters_getReturnPointBarriers(
_handle,
errorHandler,
);
});
}
Implementation
set returnPointBarriers(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ClosestFacilityParameters_setReturnPointBarriers(
_handle,
value,
errorHandler,
);
});
}