memoryRemove method

Future<void> memoryRemove(
  1. String key
)

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

Implementation

Future<void> memoryRemove(String key) {
  return _memoryCache.remove(key);
}