arrayWithObject static method

NSMutableArray arrayWithObject(
  1. ObjCObject anObject
)
override

arrayWithObject:

Implementation

static NSMutableArray arrayWithObject(objc.ObjCObject anObject) {
  final $ret = _objc_msgSend_1sotr3r(
    _class_NSMutableArray,
    _sel_arrayWithObject_,
    anObject.ref.pointer,
  );
  return NSMutableArray.fromPointer($ret, retain: true, release: true);
}