unselectFeatures method

void unselectFeatures(
  1. {required List<Feature> features}
)

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

Parameters:

Implementation

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