2025-10-14 15:47:16 +05:30
|
|
|
class RouteConstants {
|
2025-10-16 19:09:38 +05:30
|
|
|
|
|
|
|
|
/****************************** HOME SECTION ************************************/
|
2025-10-14 15:47:16 +05:30
|
|
|
static const String home = '/home';
|
2025-10-16 19:09:38 +05:30
|
|
|
static const String attractionsPage = "/attractions";
|
2025-10-16 20:06:04 +05:30
|
|
|
static const String postCardPage = "/postcards";
|
|
|
|
|
static const String uploadPhotoPage = "/uploadPhoto";
|
2025-10-24 11:33:24 +05:30
|
|
|
static const String addFilterPage = "/addFilter";
|
2025-10-14 17:31:59 +05:30
|
|
|
|
|
|
|
|
/* ****************************** Profile Section **************************/
|
|
|
|
|
|
|
|
|
|
static const String profile = '/profile';
|
|
|
|
|
static const String editProfile = '/editProfile';
|
|
|
|
|
static const String contactUs = '/contactUs';
|
|
|
|
|
static const String termsAndCondition = '/termsAndCondition';
|
|
|
|
|
static const String privacyPolicy = '/privacyPolicy';
|
|
|
|
|
static const String faq = '/faq';
|
2025-10-15 20:30:49 +05:30
|
|
|
|
|
|
|
|
/****************************** ITINERARY CREATION ************************************/
|
|
|
|
|
|
|
|
|
|
static const String itineraryCreationStart = '/itineraryCreationStart';
|
|
|
|
|
static const String itineraryCreation = '/itineraryCreation';
|
2025-10-16 14:58:06 +05:30
|
|
|
|
|
|
|
|
/**************************** ESIM Page *****************************************/
|
|
|
|
|
|
|
|
|
|
static const String esimOffer = '/esim_offer';
|
2025-10-16 19:12:06 +05:30
|
|
|
static const String hotelOffer = '/hotelOffer';
|
2025-10-24 15:23:08 +05:30
|
|
|
|
|
|
|
|
/**************************** Attraction Page *****************************************/
|
|
|
|
|
|
|
|
|
|
static const String attractionDetails ='/attractionDetails';
|
|
|
|
|
|
|
|
|
|
/**************************** By Pass Page Page *****************************************/
|
|
|
|
|
|
|
|
|
|
static const String buyPass ='/buyPass';
|
2025-10-25 14:17:56 +05:30
|
|
|
static const String checkout ='/checkout';
|
2025-10-27 15:27:21 +05:30
|
|
|
static const String searchOffer = '/searchOffer';
|
2025-10-24 15:23:08 +05:30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-10-14 15:47:16 +05:30
|
|
|
}
|