tintColor property

UIColor? get tintColor

tintColor

Implementation

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

setTintColor:

Implementation

set tintColor(UIColor? value) {
  objc.checkOsVersionInternal('UIBarButtonItem.setTintColor:', iOS: (false, (5, 0, 0)));
  _objc_msgSend_xtuoz7(this.ref.pointer, _sel_setTintColor_, value?.ref.pointer ?? ffi.nullptr);
}