valueWithUniqueID_inPropertyWithKey_ method

NSObject? valueWithUniqueID_inPropertyWithKey_(
  1. NSObject uniqueID,
  2. NSString key
)

Implementation

NSObject? valueWithUniqueID_inPropertyWithKey_(
    NSObject uniqueID, NSString key) {
  final _ret = _lib._objc_msgSend_310(_id,
      _lib._sel_valueWithUniqueID_inPropertyWithKey_1, uniqueID._id, key._id);
  return _ret.address == 0
      ? null
      : NSObject._(_ret, _lib, retain: true, release: true);
}