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