geometry property
The entire geometry in the SpatialReference of the associated ArcGISMapViewController, if one is set.
Implementation
Geometry get geometry {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_GeometryEditorGeometry_getGeometry(
_handle,
errorHandler,
);
});
return Geometry._fromHandle(
objectHandle,
)!;
}