refreshControl property

UIRefreshControl? get refreshControl

refreshControl

Implementation

UIRefreshControl? get refreshControl {
  objc.checkOsVersionInternal('UIScrollView.refreshControl', iOS: (false, (10, 0, 0)));
  final _ret = _objc_msgSend_151sglz(this.ref.pointer, _sel_refreshControl);
  return _ret.address == 0 ? null : UIRefreshControl.castFromPointer(_ret, retain: true, release: true);
}
set refreshControl (UIRefreshControl? value)

setRefreshControl:

Implementation

set refreshControl(UIRefreshControl? value) {
  objc.checkOsVersionInternal('UIScrollView.setRefreshControl:', iOS: (false, (10, 0, 0)));
  _objc_msgSend_xtuoz7(this.ref.pointer, _sel_setRefreshControl_, value?.ref.pointer ?? ffi.nullptr);
}