curbApproach property
Curb approach.
Default value CurbApproach.eitherSide will be returned on error.
Implementation
CurbApproach get curbApproach {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceAreaFacility_getCurbApproach(
_handle, errorHandler);
});
return CurbApproach._fromCoreValue(coreValue);
}
Implementation
set curbApproach(CurbApproach value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ServiceAreaFacility_setCurbApproach(
_handle, value.coreValue, errorHandler);
});
}