travelDirection property
Travel direction.
Default value TravelDirection.fromFacility will be returned on error.
Implementation
TravelDirection get travelDirection {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ServiceAreaTaskInfo_getTravelDirection(
_handle,
errorHandler,
);
});
return TravelDirection._fromCoreValue(
coreValue,
);
}