SimpleCache<K, V> constructor

SimpleCache<K, V>({
  1. Storage<K, V>? storage,
  2. required int capacity,
})

Implementation

SimpleCache({Storage<K, V>? storage, required int capacity})
    : super(storage: storage, capacity: capacity);