Maximum number of entries to store in the cache.
Once this many entries have been cached, the least-recently-used entry is evicted when adding a new entry.
Source
int get maximumSize => _maximumSize;
Changes the maximum cache size.
If the new size is smaller than the current number of elements, the extraneous elements are evicted immediately. Setting this to zero and then returning it to its original value will therefore immediately clear the cache.
Source
set maximumSize(int value) { assert(value != null); assert(value >= 0); if (value == maximumSize) return; _maximumSize = value; if (maximumSize == 0) { _cache.clear(); } else { while (_cache.length > maximumSize) _cache.remove(_cache.keys.first); } }