facilityId property
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_Facility_getFacilityId(_handle, errorHandler);
});
}
Implementation
set facilityId(int value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Facility_setFacilityId(_handle, value, errorHandler);
});
}