unselectFeatures method
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);
});
}