recentlyAccessedCondition method
Creates a condition for "recently accessed" within threshold.
Implementation
HiCond<dynamic> recentlyAccessedCondition({required int thresholdMs}) {
return lruRecentlyAccessedCondition(
metaKey: metaKey,
lastAccessedKey: lastAccessedKey,
thresholdMs: thresholdMs,
nowProvider: nowProvider,
);
}