UIKeyboardLayoutGuide.fromPointer constructor

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

Constructs a UIKeyboardLayoutGuide that wraps the given raw object pointer.

Implementation

UIKeyboardLayoutGuide.fromPointer(ffi.Pointer<objc.ObjCObjectImpl> other, {bool retain = false, bool release = false})
  : object$ = objc.ObjCObject(other, retain: retain, release: release) {}