CacheResult<T> constructor

CacheResult<T>({
  1. T? data,
  2. Exception? exception,
})

Constructor for a cache result.

Implementation

CacheResult({super.data, super.exception});