objectRelease function

  1. @Native<Void Function(Pointer<ObjCObjectImpl>)>(ffi.Pointer<ObjCObjectImpl>)>(symbol: 'objc_release', isLeaf: true)
void objectRelease(
  1. Pointer<ObjCObjectImpl> object
)

Implementation

@ffi.Native<ffi.Void Function(ffi.Pointer<ObjCObjectImpl>)>(
  symbol: 'objc_release',
  isLeaf: true,
)
external void objectRelease(ffi.Pointer<ObjCObjectImpl> object);