offImage property

UIImage? get offImage

offImage

Implementation

UIImage? get offImage {
  objc.checkOsVersionInternal('UISwitch.offImage', iOS: (false, (6, 0, 0)));
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_offImage);
  return _ret.address == 0 ? null : UIImage.castFromPointer(_ret, retain: true, release: true);
}
set offImage (UIImage? value)

setOffImage:

Implementation

set offImage(UIImage? value) {
  objc.checkOsVersionInternal('UISwitch.setOffImage:', iOS: (false, (6, 0, 0)));
  _objc_msgSend_xtuoz7(this.ref.pointer, _sel_setOffImage_, value?.ref.pointer ?? ffi.nullptr);
}