onCollisionEnd method
onCollisionEnd is called once when this object has stopped colliding
with other
.
Implementation
@override
@mustCallSuper
void onCollisionEnd(PositionComponent other) {
activeCollisions.remove(other);
onCollisionEndCallback?.call(other);
}