ReticleInteractionConfiguration constructor
Creates a ReticleInteractionConfiguration that enables vertex adding, moving, and deleting.
Using this constructor results in the same default values as the ReticleVertexTool.configuration defaults.
Implementation
factory ReticleInteractionConfiguration() {
_initializeArcGISEnvironmentIfNeeded();
final handle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ReticleInteractionConfiguration_create(
errorHandler,
);
});
return ReticleInteractionConfiguration._withHandle(handle);
}