geometry property
Event's geometry.
The geometry for the route direction.
Implementation
ArcGISPoint? get geometry {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_DirectionEvent_getGeometry(_handle, errorHandler);
});
return ArcGISPoint._fromHandle(objectHandle);
}