getPendingJobs method

Future<List<JobContext>> getPendingJobs()

Get all pending jobs (for inspection)

Implementation

Future<List<JobContext>> getPendingJobs() async {
  await _ensureLoaded();
  return List.unmodifiable(_memoryCache);
}