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