curbApproach property
Point barrier's curb approach.
The curb approach.
Implementation
CurbApproach get curbApproach {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_PointBarrier_getCurbApproach(
_handle,
errorHandler,
);
});
return CurbApproach._fromCoreValue(
coreValue,
);
}
Implementation
set curbApproach(CurbApproach value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PointBarrier_setCurbApproach(
_handle,
value.coreValue,
errorHandler,
);
});
}