CacheInfo constructor

CacheInfo({
  1. required String url,
  2. bool lazy = true,
  3. String? belongTo,
})

Implementation

CacheInfo({
  required this.url,
  this.lazy = true,
  this.belongTo,
});