endTrackingWithTouch method

void endTrackingWithTouch(
  1. UITouch? touch, {
  2. UIEvent? withEvent,
})

endTrackingWithTouch:withEvent:

Implementation

void endTrackingWithTouch(UITouch? touch, {UIEvent? withEvent}) {
  objc.checkOsVersionInternal('UIControl.endTrackingWithTouch:withEvent:', iOS: (false, (2, 0, 0)));
  _objc_msgSend_pfv6jd(
    this.ref.pointer,
    _sel_endTrackingWithTouch_withEvent_,
    touch?.ref.pointer ?? ffi.nullptr,
    withEvent?.ref.pointer ?? ffi.nullptr,
  );
}