getReport method
Get failed job report
Implementation
@override
Future<Map<String, dynamic>> getReport() async {
final stats = await _dlq.getStats();
final recentFailures = await _dlq.getAll(limit: 10);
return {
'stats': stats,
'recentFailures': recentFailures.map((j) => j.toJson()).toList(),
};
}