facilityId property
Service area facility ID.
This is a caller supplied foreign key that can be used to associate output facilities with input facilities.
Implementation
int get facilityId {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceAreaFacility_getFacilityId(
_handle, errorHandler);
});
}
Implementation
set facilityId(int value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ServiceAreaFacility_setFacilityId(
_handle, value, errorHandler);
});
}