handleCollisionEnd method
Implementation
void handleCollisionEnd(PositionComponent other) {
if (other is T) {
for (final callback in _onContactExitCallbacks) {
callback(other);
}
}
}
void handleCollisionEnd(PositionComponent other) {
if (other is T) {
for (final callback in _onContactExitCallbacks) {
callback(other);
}
}
}