CachedAssetEntry constructor

const CachedAssetEntry({
  1. required String sourceUri,
  2. required String filePath,
  3. required DateTime cachedAt,
  4. String? contentType,
})

Implementation

const CachedAssetEntry({
  required this.sourceUri,
  required this.filePath,
  required this.cachedAt,
  this.contentType,
});