Future<String?> getEmailIdFromLocalStorage() async { SharedPreferences prefs = await SharedPreferences.getInstance(); String? value = prefs.getString(emailIdKey); return value; }