geometry property

ArcGISPoint? geometry

The geometry of a service area facility.

Gets service area facility's location using geographical point.

Implementation

ArcGISPoint? get geometry {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ServiceAreaFacility_getGeometry(
        _handle, errorHandler);
  });
  return ArcGISPoint._fromHandle(objectHandle);
}