routes property

List<GetPage> routes
final

Implementation

static final routes = [
  GetPage(
    name: _Paths.HOME,
    page: () => HomeView(),
    binding: HomeBinding(),
  ),
  GetPage(
    name: _Paths.SENSOR,
    page: () => SensorView(),
    binding: SensorBinding(),
  ),
  GetPage(
    name: _Paths.LOGIN,
    page: () => LoginView(),
    binding: LoginBinding(),
  ),
];