mutableCopyWithZone static method

ObjCObject mutableCopyWithZone(
  1. Pointer<NSZone> zone
)

mutableCopyWithZone:

Implementation

static objc.ObjCObject mutableCopyWithZone(ffi.Pointer<NSZone> zone) {
  objc.checkOsVersionInternal(
    'NSObject.mutableCopyWithZone:',
    iOS: (false, (2, 0, 0)),
    macOS: (false, (10, 0, 0)),
  );
  final $ret = _objc_msgSend_1cwp428(
    _class_NSObject,
    _sel_mutableCopyWithZone_,
    zone,
  );
  return objc.ObjCObject($ret, retain: false, release: true);
}