dictionaryWithObjects static method
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);
}