recentlyAccessedCondition method

HiCond recentlyAccessedCondition({
  1. required int thresholdMs,
})

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,
  );
}