routes property

List<GetPage> routes
final

Implementation

static final routes = [
  GetPage(
    name: _Paths.HOME,
    page: () => const HomeView(),
    binding: HomeBinding(),
  ),
  GetPage(
    name: _Paths.LOGIN,
    page: () => const LoginView(),
    binding: AuthenticationBinding(),
  ),
  GetPage(
    name: _Paths.BOOKING_REQUESTS,
    page: () => RequestsView(),
    binding: RequestsBinding(),
  ),
  GetPage(
    name: _Paths.MANAGE_BOOKINGS,
    page: () => const ManageBookingsView(),
    binding: ManageBookingsBinding(),
  ),
  GetPage(
    name: _Paths.ACCOUNTING,
    page: () => const AccountingView(),
    binding: AccountingBinding(),
  ),
  GetPage(
    name: _Paths.PROFILE,
    page: () => const ProfileView(),
    binding: ProfileBinding(),
  ),
  GetPage(
    name: _Paths.MANAGE_ADMIN,
    page: () => const ManageAdminView(),
    binding: ManageAdminBinding(),
  ),
  GetPage(
    name: _Paths.SUBSCRIPTIONS,
    page: () => const SubscriptionsView(),
    binding: SubscriptionsBinding(),
  ),
  GetPage(
    name: _Paths.SUBSCRIBER_INFO,
    page: () => const SubscriberInfo(),
    binding: SubscriptionsBinding(),
  ),
  GetPage(
    name: _Paths.NETWORK,
    page: () => const NetworkView(),
    binding: SubscriptionsBinding(),
  ),
  GetPage(
    name: _Paths.BOOKING_HISTORY,
    page: () => const SubscriberBookingHistoryView(),
    binding: SubscriberBookingHistoryBinding(),
  ),
  GetPage(
    name: _Paths.RATE_REQUESTS,
    page: () => RateRequestsView(),
    binding: RateRequestsBinding(),
  ),
  GetPage(
    name: _Paths.CONFIRM_RATE,
    page: () => ConfirmRateView(),
    binding: ManageBookingsBinding(),
  ),
];