CacheEntry constructor

CacheEntry(
  1. String cacheKey,
  2. String websocketData
)

The CacheEntry constructor is used to initialize the cache entry.

The cacheKey is the cache key. The websocketData is the websocket data.

Implementation

CacheEntry(this.cacheKey, this.websocketData);