bundleWithPath static method

NSBundle? bundleWithPath(
  1. NSString path
)

bundleWithPath:

Implementation

static NSBundle? bundleWithPath(NSString path) {
  final $ret = _objc_msgSend_1sotr3r(
    _class_NSBundle,
    _sel_bundleWithPath_,
    path.ref.pointer,
  );
  return $ret.address == 0
      ? null
      : NSBundle.fromPointer($ret, retain: true, release: true);
}