clearSelection method

void clearSelection()

Deselects all graphics in the graphics overlay.

Implementation

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