peek method
Peeks at all current perceptions without removing them.
Implementation
List<Perception> peek() {
_pruneExpired();
return _buffer.map((b) => b.perception).toList();
}
Peeks at all current perceptions without removing them.
List<Perception> peek() {
_pruneExpired();
return _buffer.map((b) => b.perception).toList();
}