despawnAll method

void despawnAll()

Despawns all active nodes managed by this pool.

Implementation

void despawnAll() {
  final activeList = List.of(_active);
  for (final node in activeList) {
    despawn(node);
  }
}