remove method

void remove(
  1. T item
)

Removes the item from the collision detection, if you just want to temporarily inactivate it you can set collisionType = CollisionType.inactive; instead.

Implementation

void remove(T item) => broadphase.remove(item);