stopId property
Stop ID.
This is a caller supplied foreign key that can be used to associate output stops with input stops.
Implementation
int get stopId {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Stop_getStopId(
_handle,
errorHandler,
);
});
}
Implementation
set stopId(int value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Stop_setStopId(
_handle,
value,
errorHandler,
);
});
}