objectRetain function

  1. @Native<Pointer<ObjCObjectImpl> Function(Pointer<ObjCObjectImpl>)>(ffi.Pointer<ObjCObjectImpl>)>(symbol: 'objc_retain', isLeaf: true)
Pointer<ObjCObjectImpl> objectRetain(
  1. Pointer<ObjCObjectImpl> object
)

Implementation

@ffi.Native<ffi.Pointer<ObjCObjectImpl> Function(ffi.Pointer<ObjCObjectImpl>)>(
  symbol: 'objc_retain',
  isLeaf: true,
)
external ffi.Pointer<ObjCObjectImpl> objectRetain(
  ffi.Pointer<ObjCObjectImpl> object,
);