Retrieves an item from the cache.
static Future<T?> get<T>(String key) async { final value = await _driver.get(key); if (value == null) return null; return value as T; }