Retrieve and decode data for key, or null if missing/expired.
key
static Future<dynamic> get(String key) async { final raw = await storage.get(key); if (raw == null) return null; return jsonDecode(raw); }