barTintColor property

UIColor? get barTintColor

barTintColor

Implementation

UIColor? get barTintColor {
  objc.checkOsVersionInternal('UITabBar.barTintColor', iOS: (false, (7, 0, 0)));
  final $ret = _objc_msgSend_151sglz(object$.ref.pointer, _sel_barTintColor);
  return $ret.address == 0 ? null : UIColor.fromPointer($ret, retain: true, release: true);
}
set barTintColor (UIColor? value)

setBarTintColor:

Implementation

set barTintColor(UIColor? value) {
  objc.checkOsVersionInternal('UITabBar.setBarTintColor:', iOS: (false, (7, 0, 0)));
  _objc_msgSend_xtuoz7(object$.ref.pointer, _sel_setBarTintColor_, value?.ref.pointer ?? ffi.nullptr);
}