ExpireCache<K, V> constructor

ExpireCache<K, V>({Clock clock: const Clock(), Duration expireDuration: const Duration(seconds: 60), Duration gcDuration: const Duration(seconds: 60) })

Implementation

ExpireCache(
    {this.clock = const Clock(),
    this.expireDuration = const Duration(seconds: 60),
    this.gcDuration = const Duration(seconds: 60)});