Future<String?> getStoreByKey(String k) async { SharedPreferences prefs = await SharedPreferences.getInstance(); return prefs.get(k) as String; }