arrivalCurbApproach property
Arrival curb approach.
Default value CurbApproach.eitherSide will be returned on error.
Implementation
CurbApproach get arrivalCurbApproach {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ClosestFacilityRoute_getArrivalCurbApproach(
_handle,
errorHandler,
);
});
return CurbApproach._fromCoreValue(
coreValue,
);
}