GeocodeParameters constructor
Creates a new geocode parameters object.
Implementation
factory GeocodeParameters() {
_initializeArcGISEnvironmentIfNeeded();
final handle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeocodeParameters_create(errorHandler);
});
return GeocodeParameters._withHandle(handle);
}