allocWithZone static method

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

allocWithZone:

Implementation

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