attributesOfItemAtPath_error_ method

NSDictionary? attributesOfItemAtPath_error_(
  1. NSString path,
  2. Pointer<Pointer<ObjCObject>> error
)

Implementation

NSDictionary? attributesOfItemAtPath_error_(
    NSString path, ffi.Pointer<ffi.Pointer<ObjCObject>> error) {
  final _ret = _lib._objc_msgSend_443(
      _id, _lib._sel_attributesOfItemAtPath_error_1, path._id, error);
  return _ret.address == 0
      ? null
      : NSDictionary._(_ret, _lib, retain: true, release: true);
}