unselectFeatures method

void unselectFeatures(
  1. List<Feature> features
)

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

Parameters:

Implementation

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