static Future<bool> put<T>({required String key, dynamic value}) async { _cacheEntries.putIfAbsent(key, () => value as T); return true; }