stats property

SpatialIndexStats get stats

Get performance statistics

Implementation

SpatialIndexStats get stats => SpatialIndexStats(
  objectCount: _objects.length,
  gridCellCount: _spatialGrid.length,
  isDragging: _isDragging,
  draggingObjectCount: _draggingObjectIds.length,
  cacheSize: _cachedVisibleObjects.length,
);