initWithImage method

UIImageView initWithImage(
  1. UIImage? image
)

initWithImage:

Implementation

UIImageView initWithImage(UIImage? image) {
objc.checkOsVersionInternal('UIImageView.initWithImage:', iOS: (false, (2, 0, 0)));
  final _ret = _objc_msgSend_1sotr3r(this.ref.retainAndReturnPointer(), _sel_initWithImage_, image?.ref.pointer ?? ffi.nullptr);
  return UIImageView.castFromPointer(_ret, retain: false, release: true);
}