getPendingJobs method
Get all pending jobs (for inspection)
Implementation
Future<List<JobContext>> getPendingJobs() async {
await _ensureLoaded();
return List.unmodifiable(_memoryCache);
}
Get all pending jobs (for inspection)
Future<List<JobContext>> getPendingJobs() async {
await _ensureLoaded();
return List.unmodifiable(_memoryCache);
}