currentPageIndicatorTintColor property

UIColor? get currentPageIndicatorTintColor

The tint color for the currently-selected indicators. Default is nil.

Implementation

UIColor? get currentPageIndicatorTintColor {
  final _$$ref = object$.ref;
  objc.checkOsVersionInternal('UIPageControl.currentPageIndicatorTintColor', iOS: (false, (6, 0, 0)));
  final $ret = _objc_msgSend_151sglz(_$$ref.pointer, _sel_currentPageIndicatorTintColor);
  return $ret.address == 0 ? null : UIColor.fromPointer($ret, retain: true, release: true);
}
set currentPageIndicatorTintColor (UIColor? value)

The tint color for the currently-selected indicators. Default is nil.

Implementation

set currentPageIndicatorTintColor(UIColor? value) {
  final _$$ref = object$.ref;
  final _$$ref$1 = value?.ref;
  objc.checkOsVersionInternal('UIPageControl.setCurrentPageIndicatorTintColor:', iOS: (false, (6, 0, 0)));
  _objc_msgSend_xtuoz7(_$$ref.pointer, _sel_setCurrentPageIndicatorTintColor_, _$$ref$1?.pointer ?? ffi.nullptr);
}