CachedResource constructor

CachedResource({
  1. required String url,
  2. required ResourceType type,
  3. ResponseData? response,
  4. required num bodySize,
})

Implementation

CachedResource(
    {required this.url,
    required this.type,
    this.response,
    required this.bodySize});