touchesMoved method

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

touchesMoved:withEvent:

Implementation

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