CacheEntryBuilder<T> constructor
CacheEntryBuilder<T> (})
Builds a CacheEntryBuilder
- key: The entry key
- value: The entry value
- creationTime: The entry creation time
- expiryDuration: The entry expiry duration
- hitCount: The entry hit count
accessTime
: The access timeupdateTime
: The update time
Implementation
CacheEntryBuilder(
super.key, super.value, super.creationTime, this.expiryDuration,
{this.hitCount, super.accessTime, super.updateTime});