objectForInfoDictionaryKey method

ObjCObject? objectForInfoDictionaryKey(
  1. NSString key
)

objectForInfoDictionaryKey:

Implementation

objc.ObjCObject? objectForInfoDictionaryKey(NSString key) {
  final $ret = _objc_msgSend_1sotr3r(
    object$.ref.pointer,
    _sel_objectForInfoDictionaryKey_,
    key.ref.pointer,
  );
  return $ret.address == 0
      ? null
      : objc.ObjCObject($ret, retain: true, release: true);
}