CacheMetadata constructor

const CacheMetadata({
  1. required String url,
  2. required int sizeInBytes,
  3. required DateTime timestamp,
  4. required String cacheKey,
})

Implementation

const CacheMetadata({
  required this.url,
  required this.sizeInBytes,
  required this.timestamp,
  required this.cacheKey,
});