I'm looking at apple documentation, but do not see the function call to tell me how much time I have left for background fetch execution.
How do I check the time budget I have left for background fetch?
//request refresh every 90 minutes: UIApplication.shared.setMinimumBackgroundFetchInterval(90 * 60)
func application(_ application: UIApplication,
performFetchWithCompletionHandler completionHandler:
@escaping (UIBackgroundFetchResult) -> Void) {
//how to check if I still have background execution time remaining?
}