peek method
Peek at the next request without removing it.
Implementation
@override
QueuedRequest? peek() => _queue.isEmpty ? null : _queue.first;
Peek at the next request without removing it.
@override
QueuedRequest? peek() => _queue.isEmpty ? null : _queue.first;