unrelateFeature method

void unrelateFeature(
  1. ArcGISFeature feature
)

Removes the relationship between this feature and the provided feature.

If there is no existing relationship between the features, an ArcGISExceptionType.commonInvalidArgument is thrown.

Parameters:

  • feature — The feature from which this feature should remove its relationship.

Implementation

void unrelateFeature(ArcGISFeature feature) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ArcGISFeature_unrelateFeature(
        _handle, feature._handle, errorHandler);
  });
}