onTintColor property

UIColor? get onTintColor

onTintColor

Implementation

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

setOnTintColor:

Implementation

set onTintColor(UIColor? value) {
  objc.checkOsVersionInternal('UISwitch.setOnTintColor:', iOS: (false, (5, 0, 0)));
  _objc_msgSend_xtuoz7(this.ref.pointer, _sel_setOnTintColor_, value?.ref.pointer ?? ffi.nullptr);
}