Files
social-app/apps/lib/core/cache/cache_key.dart
T

18 lines
308 B
Dart
Raw Normal View History

2026-03-20 15:21:52 +08:00
class CacheKey {
final String value;
const CacheKey(this.value);
@override
String toString() => value;
@override
bool operator ==(Object other) {
return identical(this, other) ||
(other is CacheKey && other.value == value);
}
@override
int get hashCode => value.hashCode;
}