stringWithString static method

NSMutableString stringWithString(
  1. NSString string
)
override

stringWithString:

Implementation

static NSMutableString stringWithString(NSString string) {
  final $ret = _objc_msgSend_1sotr3r(
    _class_NSMutableString,
    _sel_stringWithString_,
    string.ref.pointer,
  );
  return NSMutableString.fromPointer($ret, retain: true, release: true);
}