dictionaryWithObjects$1 static method
NSMutableDictionary
dictionaryWithObjects$1(
- Pointer<
Pointer< objects, {ObjCObjectImpl> > - required Pointer<
Pointer< forKeys,ObjCObjectImpl> > - required int count,
override
dictionaryWithObjects:forKeys:count:
Implementation
static NSMutableDictionary dictionaryWithObjects$1(
ffi.Pointer<ffi.Pointer<objc.ObjCObjectImpl>> objects, {
required ffi.Pointer<ffi.Pointer<objc.ObjCObjectImpl>> forKeys,
required int count,
}) {
final $ret = _objc_msgSend_1dydpdi(
_class_NSMutableDictionary,
_sel_dictionaryWithObjects_forKeys_count_,
objects,
forKeys,
count,
);
return NSMutableDictionary.fromPointer($ret, retain: true, release: true);
}