unselectFeatures method

void unselectFeatures(
  1. List<Feature> features
)

Unselects the features in the given list and removes them from the current list of selected features.

Parameters:

Implementation

void unselectFeatures(
  List<Feature> features,
) {
  final coreFeatures = features.toArray(
    valueType: _ElementType.feature,
  );
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_DimensionLayer_unselectFeatures(
      _handle,
      coreFeatures._handle,
      errorHandler,
    );
  });
}