memoryGet method

Future<Uint8List?> memoryGet(
  1. String key
)

Retrieves a value from the in-memory cache by key.

Implementation

Future<Uint8List?> memoryGet(String key) {
  return _memoryCache.get(key);
}