unselectFeature method

void unselectFeature(
  1. {required Feature feature}
)

Unselects the given feature and removes it from the current collection of selected features.

Parameters:

  • feature — The feature.

Implementation

void unselectFeature({required Feature feature}) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_FeatureLayer_unselectFeature(
        _handle, feature._handle, errorHandler);
  });
}