mutableCopyWithZone method

ObjCObject mutableCopyWithZone(
  1. Pointer<NSZone> zone
)

mutableCopyWithZone:

Implementation

objc.ObjCObject mutableCopyWithZone(ffi.Pointer<NSZone> zone) {
  final $ret = _objc_msgSend_1cwp428(
    object$.ref.pointer,
    _sel_mutableCopyWithZone_,
    zone,
  );
  return objc.ObjCObject($ret, retain: false, release: true);
}