remove method

void remove(
  1. String messageId
)

Removes a specific entry from the cache

Implementation

void remove(String messageId) {
  _cache.remove(messageId);
}