dictionaryWithObjects static method

NSDictionary dictionaryWithObjects(
  1. NSArray objects, {
  2. required NSArray forKeys,
})

dictionaryWithObjects:forKeys:

Implementation

static NSDictionary dictionaryWithObjects(
  NSArray objects, {
  required NSArray forKeys,
}) {
  final $ret = _objc_msgSend_15qeuct(
    _class_NSDictionary,
    _sel_dictionaryWithObjects_forKeys_,
    objects.ref.pointer,
    forKeys.ref.pointer,
  );
  return NSDictionary.fromPointer($ret, retain: true, release: true);
}