UIFocusUpdateContext.fromPointer constructor

UIFocusUpdateContext.fromPointer(
  1. Pointer<ObjCObjectImpl> other, {
  2. bool retain = false,
  3. bool release = false,
})

Constructs a UIFocusUpdateContext that wraps the given raw object pointer.

Implementation

UIFocusUpdateContext.fromPointer(ffi.Pointer<objc.ObjCObjectImpl> other, {bool retain = false, bool release = false})
  : object$ = objc.ObjCObject(other, retain: retain, release: release) {
  objc.checkOsVersionInternal('UIFocusUpdateContext', iOS: (false, (9, 0, 0)));
}