removeAll method

void removeAll(
  1. Iterable<T> items
)

Removes all items from the collision detection, see remove.

Implementation

void removeAll(Iterable<T> items) => items.forEach(remove);