peek method
Peek at the next request without removing it.
Implementation
@override
QueuedRequest? peek() {
if (_queue.isEmpty) return null;
return _toQueuedRequest(_queue.first);
}
Peek at the next request without removing it.
@override
QueuedRequest? peek() {
if (_queue.isEmpty) return null;
return _toQueuedRequest(_queue.first);
}