touchesCancelled method

void touchesCancelled(
  1. NSSet touches, {
  2. UIEvent? withEvent,
})

touchesCancelled:withEvent:

Implementation

void touchesCancelled(objc.NSSet touches, {UIEvent? withEvent}) {
  objc.checkOsVersionInternal('UIResponder.touchesCancelled:withEvent:', iOS: (false, (2, 0, 0)));
  _objc_msgSend_pfv6jd(
    this.ref.pointer,
    _sel_touchesCancelled_withEvent_,
    touches.ref.pointer,
    withEvent?.ref.pointer ?? ffi.nullptr,
  );
}