endContact method

  1. @override
void endContact(
  1. Contact contact
)
override

Called when two fixtures cease to touch.

Implementation

@override
void endContact(Contact contact) {
  _callback(
    contact,
    (contactCallback, other) => contactCallback.endContact(other, contact),
  );
}