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