backgroundRefreshStatus property

UIBackgroundRefreshStatus get backgroundRefreshStatus

! When background refresh is available for an application, it may launched or resumed in the background to handle significant location changes, remote notifications, background fetches, etc. Observe UIApplicationBackgroundRefreshStatusDidChangeNotification to be notified of changes.

Implementation

UIBackgroundRefreshStatus get backgroundRefreshStatus {
  objc.checkOsVersionInternal('UIApplication.backgroundRefreshStatus', iOS: (false, (7, 0, 0)));
  final _ret = _objc_msgSend_1499xyo(this.ref.pointer, _sel_backgroundRefreshStatus);
  return UIBackgroundRefreshStatus.fromValue(_ret);
}