unselectFeature method
- Feature feature
Unselects the given feature and removes it from the current collection of selected features.
Parameters:
feature
— The feature.
Implementation
void unselectFeature(
Feature feature,
) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_FeatureLayer_unselectFeature(
_handle,
feature._handle,
errorHandler,
);
});
}