unselectFeature method

void unselectFeature(
  1. Feature feature
)

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

Parameters:

  • feature — The feature.

Implementation

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