Future<List<String>> get(String key) async { SharedPreferences prefs = await SharedPreferences.getInstance(); return prefs.getStringList(key) ?? []; }