clearSelection method

void clearSelection()

Updates any selected features in the layer back to the un-selected state.

Implementation

void clearSelection() {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_AnnotationLayer_clearSelection(
      _handle,
      errorHandler,
    );
  });
}