touchesEnded method

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

touchesEnded:withEvent:

Implementation

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