motionCancelled method

void motionCancelled(
  1. UIEventSubtype motion, {
  2. UIEvent? withEvent,
})

motionCancelled:withEvent:

Implementation

void motionCancelled(UIEventSubtype motion, {UIEvent? withEvent}) {
  objc.checkOsVersionInternal('UIResponder.motionCancelled:withEvent:', iOS: (false, (3, 0, 0)));
  _objc_msgSend_pov02z(
    this.ref.pointer,
    _sel_motionCancelled_withEvent_,
    motion.value,
    withEvent?.ref.pointer ?? ffi.nullptr,
  );
}