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