imageWithCGImage_ static method

UIImage imageWithCGImage_(
  1. Pointer<CGImage> cgImage
)

imageWithCGImage:

Implementation

static UIImage imageWithCGImage_(ffi.Pointer<CGImage> cgImage) {
  final _ret = _objc_msgSend_6cumpt(_class_UIImage, _sel_imageWithCGImage_, cgImage);
  return UIImage.castFromPointer(_ret, retain: true, release: true);
}