geometry property
Incident's point geometry.
Incident's location using geographical point.
Implementation
ArcGISPoint? get geometry {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Incident_getGeometry(_handle, errorHandler);
});
return ArcGISPoint._fromHandle(objectHandle);
}