peek method

List<Perception> peek()

Peeks at all current perceptions without removing them.

Implementation

List<Perception> peek() {
  _pruneExpired();
  return _buffer.map((b) => b.perception).toList();
}