offImage property

UIImage? get offImage

offImage

Implementation

UIImage? get offImage {
  objc.checkOsVersionInternal('UISwitch.offImage', iOS: (false, (6, 0, 0)));
  final $ret = _objc_msgSend_151sglz(object$.ref.pointer, _sel_offImage);
  return $ret.address == 0 ? null : UIImage.fromPointer($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(object$.ref.pointer, _sel_setOffImage_, value?.ref.pointer ?? ffi.nullptr);
}