initWithDictionary$1 method

NSDictionary initWithDictionary$1(
  1. NSDictionary otherDictionary, {
  2. required bool copyItems,
})

initWithDictionary:copyItems:

Implementation

NSDictionary initWithDictionary$1(
  NSDictionary otherDictionary, {
  required bool copyItems,
}) {
  final $ret = _objc_msgSend_17amj0z(
    object$.ref.retainAndReturnPointer(),
    _sel_initWithDictionary_copyItems_,
    otherDictionary.ref.pointer,
    copyItems,
  );
  return NSDictionary.fromPointer($ret, retain: false, release: true);
}