memoryPut method

Future<Uint8List?> memoryPut(
  1. String key,
  2. Uint8List value
)

Inserts a value into the in-memory cache.

Implementation

Future<Uint8List?> memoryPut(String key, Uint8List value) {
  return _memoryCache.put(key, value);
}