dictionaryWithObjects static method

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

dictionaryWithObjects:forKeys:

Implementation

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