set static method

void set(
  1. String key,
  2. Uint8List bytes
)

Puts the provided bytes to the cache.

Implementation

static void set(String key, Uint8List bytes) {
  if (!_cache.containsKey(key)) {
    while (size >= _maxSize) {
      _cache.remove(_cache.keys.first);
    }

    if (_cache.length >= _maxLength) {
      _cache.remove(_cache.keys.first);
    }

    _cache[key] = bytes;
  }
}