LoadSettings constructor
Creates a new load settings object.
Implementation
factory LoadSettings() {
_initializeArcGISEnvironmentIfNeeded();
final handle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_LoadSettings_create(errorHandler);
});
return LoadSettings._withHandle(handle);
}