allocWithZone static method

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

allocWithZone:

Implementation

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