allocWithZone static method

NSMutableArray allocWithZone(
  1. Pointer<NSZone> zone
)
override

allocWithZone:

Implementation

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