QueryCacheEntry<T> constructor
QueryCacheEntry<T> ({})
Creates a QueryCacheEntry record.
Implementation
QueryCacheEntry({
required this.key,
this.data,
required this.updatedAt,
this.staleTime = const Duration(minutes: 5),
this.cacheTime = const Duration(minutes: 30),
this.isStale = false,
});