routes property
Implementation
static final routes = [
GetPage(
name: _Paths.HOME,
page: () => const HomeView(),
binding: HomeBinding(),
),
GetPage(
name: _Paths.OTP,
page: () => const OtpView(),
binding: OtpBinding(),
),
GetPage(
name: _Paths.LOGIN,
page: () => LoginDreamView(appBar: AppBar(), fields: []),
binding: LoginBinding(),
),
];