directionsSupport property

NetworkDirectionsSupport directionsSupport

Whether the underlying network dataset supports the returning of directions.

For services prior to ArcGIS 10.8, this value will be NetworkDirectionsSupport.unknown.

Implementation

NetworkDirectionsSupport get directionsSupport {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_RouteTaskInfo_getDirectionsSupport(
        _handle, errorHandler);
  });
  return NetworkDirectionsSupport._fromCoreValue(coreValue);
}