currentQueueDepth property

int get currentQueueDepth

Current queue depth (most recent snapshot)

Implementation

int get currentQueueDepth {
  if (_queueDepthHistory.isEmpty) return 0;
  return _queueDepthHistory.last.depth;
}