thumbTintColor property

UIColor? get thumbTintColor

thumbTintColor

Implementation

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

setThumbTintColor:

Implementation

set thumbTintColor(UIColor? value) {
  objc.checkOsVersionInternal('UISwitch.setThumbTintColor:', iOS: (false, (6, 0, 0)));
  _objc_msgSend_xtuoz7(this.ref.pointer, _sel_setThumbTintColor_, value?.ref.pointer ?? ffi.nullptr);
}