largeContentSizeImage property
UIImage?
get
largeContentSizeImage
largeContentSizeImage
Implementation
UIImage? get largeContentSizeImage {
objc.checkOsVersionInternal('UIBarItem.largeContentSizeImage', iOS: (false, (11, 0, 0)));
final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_largeContentSizeImage);
return _ret.address == 0 ? null : UIImage.castFromPointer(_ret, retain: true, release: true);
}
set
largeContentSizeImage
(UIImage? value)
setLargeContentSizeImage:
Implementation
set largeContentSizeImage(UIImage? value) {
objc.checkOsVersionInternal('UIBarItem.setLargeContentSizeImage:', iOS: (false, (11, 0, 0)));
_objc_msgSend_xtuoz7(this.ref.pointer, _sel_setLargeContentSizeImage_, value?.ref.pointer ?? ffi.nullptr);
}