allocWithZone static method

NSObject allocWithZone(
  1. Pointer<NSZone> zone
)

allocWithZone:

Implementation

static NSObject allocWithZone(ffi.Pointer<NSZone> zone) {
  final $ret = _objc_msgSend_1cwp428(
    _class_NSObject,
    _sel_allocWithZone_,
    zone,
  );
  return NSObject.fromPointer($ret, retain: false, release: true);
}