bundleForClass static method

NSBundle bundleForClass(
  1. ObjCObject aClass
)

bundleForClass:

Implementation

static NSBundle bundleForClass(objc.ObjCObject aClass) {
  final $ret = _objc_msgSend_1sotr3r(
    _class_NSBundle,
    _sel_bundleForClass_,
    aClass.ref.pointer,
  );
  return NSBundle.fromPointer($ret, retain: true, release: true);
}