queuedEventCount property

int get queuedEventCount

Returns the number of events currently waiting in the offline queue.

Implementation

int get queuedEventCount {
  if (!_isInitialized) return 0;
  return _eventTracker?.queuedEventCount ?? 0;
}