7 lines
138 B
Dart
7 lines
138 B
Dart
|
|
class CacheEntry<T> {
|
||
|
|
final T value;
|
||
|
|
final DateTime fetchedAt;
|
||
|
|
|
||
|
|
const CacheEntry({required this.value, required this.fetchedAt});
|
||
|
|
}
|