getSelectedGraphics method
Returns a collection of all the selected graphics in the graphics overlay.
Implementation
List<Graphic> getSelectedGraphics() {
final arrayHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GraphicsOverlay_getSelectedGraphics(
_handle,
errorHandler,
);
});
return arrayHandle.toList();
}