CacheOperation constructor

CacheOperation({
  1. required CacheOperationType type,
  2. required String key,
  3. required DateTime timestamp,
  4. int? size,
})

Creates a new instance of CacheOperation.

Implementation

CacheOperation({
  required this.type,
  required this.key,
  required this.timestamp,
  this.size,
});