UIKeyCommand.castFromPointer constructor

UIKeyCommand.castFromPointer(
  1. Pointer<ObjCObject> other, {
  2. bool retain = false,
  3. bool release = false,
})

Constructs a UIKeyCommand that wraps the given raw object pointer.

Implementation

UIKeyCommand.castFromPointer(ffi.Pointer<objc.ObjCObject> other, {bool retain = false, bool release = false})
  : this._(other, retain: retain, release: release);