Check if key exists
Future<bool> has(String key) async { final data = await get(key); return data != null; }