CacheInfo constructor

const CacheInfo({
  1. required int fileCount,
  2. required int totalSize,
  3. required List<FileInfo> files,
})

Implementation

const CacheInfo({
  required this.fileCount,
  required this.totalSize,
  required this.files,
});