GeometryEditor constructor

GeometryEditor()

Creates a default GeometryEditor.

Implementation

factory GeometryEditor() {
  _initializeArcGISEnvironmentIfNeeded();
  final handle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GeometryEditor_create(
      errorHandler,
    );
  });
  return GeometryEditor._withHandle(handle);
}