isStale method
Returns true if stats for table are stale (older than maxAge).
Implementation
bool isStale(String table,
{Duration maxAge = const Duration(hours: 24)}) {
final ts = _stats[table];
if (ts == null) return true;
return DateTime.now().difference(ts.collectedAt) > maxAge;
}