imageWithContentsOfFile_ static method

UIImage? imageWithContentsOfFile_(
  1. NSString path
)

imageWithContentsOfFile:

Implementation

static UIImage? imageWithContentsOfFile_(objc.NSString path) {
  final _ret = _objc_msgSend_62nh5j(_class_UIImage, _sel_imageWithContentsOfFile_, path.ref.pointer);
  return _ret.address == 0 ? null : UIImage.castFromPointer(_ret, retain: true, release: true);
}