CacheMessage constructor

CacheMessage({
  1. String? dataSource,
  2. bool? useCache,
  3. int? maxCacheSize,
  4. int? maxFileSize,
  5. String? cachePath,
})

Implementation

CacheMessage({
  this.dataSource,
  this.useCache,
  this.maxCacheSize,
  this.maxFileSize,
  this.cachePath,
});