bundleWithPath_ static method

NSBundle? bundleWithPath_(
  1. ThermionDartTexture1 _lib,
  2. NSString path
)

Implementation

static NSBundle? bundleWithPath_(ThermionDartTexture1 _lib, NSString path) {
  final _ret = _lib._objc_msgSend_38(
      _lib._class_NSBundle1, _lib._sel_bundleWithPath_1, path._id);
  return _ret.address == 0
      ? null
      : NSBundle._(_ret, _lib, retain: true, release: true);
}