dictionaryWithObjectsAndKeys static method

NSDictionary dictionaryWithObjectsAndKeys(
  1. ObjCObject firstObject
)

dictionaryWithObjectsAndKeys:

Implementation

static NSDictionary dictionaryWithObjectsAndKeys(
  objc.ObjCObject firstObject,
) {
  final $ret = _objc_msgSend_1sotr3r(
    _class_NSDictionary,
    _sel_dictionaryWithObjectsAndKeys_,
    firstObject.ref.pointer,
  );
  return NSDictionary.fromPointer($ret, retain: true, release: true);
}