Future<String> getStringSharedPref(String key) async { final prefs = await sharedPreferences; return prefs.getString(key) ?? ''; }