CacheOperation constructor
      
      CacheOperation({ 
    
- required CacheOperationType type,
- required String key,
- required DateTime timestamp,
- int? size,
Creates a new instance of CacheOperation.
Implementation
CacheOperation({
  required this.type,
  required this.key,
  required this.timestamp,
  this.size,
});