peek method

QueuedRequest? peek()

Peeks at the next request without removing it

Implementation

QueuedRequest? peek() {
  if (_queue.isEmpty) return null;
  return _queue.first;
}