peek method

T? peek()

Peek at highest priority item without removing

Implementation

T? peek() => _heap.isEmpty ? null : _heap.first;