pressesCancelled method

void pressesCancelled(
  1. NSSet presses, {
  2. UIPressesEvent? withEvent,
})

pressesCancelled:withEvent:

Implementation

void pressesCancelled(objc.NSSet presses, {UIPressesEvent? withEvent}) {
  objc.checkOsVersionInternal('UIResponder.pressesCancelled:withEvent:', iOS: (false, (9, 0, 0)));
  _objc_msgSend_pfv6jd(
    this.ref.pointer,
    _sel_pressesCancelled_withEvent_,
    presses.ref.pointer,
    withEvent?.ref.pointer ?? ffi.nullptr,
  );
}