inputLocation property
The ArcGISPoint provided as input to LocatorTask.reverseGeocode.
Only applicable for results of reverse-geocode operations.
Implementation
ArcGISPoint? get inputLocation {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeocodeResult_getInputLocation(
_handle, errorHandler);
});
return ArcGISPoint._fromHandle(objectHandle);
}