peek method

List<EventRequest> peek()

Returns a snapshot of all events currently in the queue without removing them.

Implementation

List<EventRequest> peek() {
  return List<EventRequest>.from(_queue);
}