attributes property

NSArray? get attributes

Implementation

NSArray? get attributes {
  final _ret = _lib._objc_msgSend_83(_id, _lib._sel_attributes1);
  return _ret.address == 0
      ? null
      : NSArray._(_ret, _lib, retain: true, release: true);
}
set attributes (NSArray? value)

Implementation

set attributes(NSArray? value) {
  return _lib._objc_msgSend_1039(
      _id, _lib._sel_setAttributes_1, value?._id ?? ffi.nullptr);
}