UIPanGestureRecognizer.fromPointer constructor
UIPanGestureRecognizer.fromPointer(})
Constructs a UIPanGestureRecognizer that wraps the given raw object pointer.
Implementation
UIPanGestureRecognizer.fromPointer(
ffi.Pointer<objc.ObjCObjectImpl> other, {
bool retain = false,
bool release = false,
}) : object$ = objc.ObjCObject(other, retain: retain, release: release) {
objc.checkOsVersionInternal('UIPanGestureRecognizer', iOS: (false, (3, 2, 0)));
}