123456789101112131415161718 |
- part of 'app_pages.dart';
- // DO NOT EDIT. This is code generated via package:get_cli/get_cli.dart
- abstract class Routes {
- Routes._();
- static const HOME = _Paths.HOME;
- static const WELCOME = _Paths.WELCOME;
- static const LOGIN = _Paths.LOGIN;
- static const NODE = _Paths.NODE;
- }
- abstract class _Paths {
- _Paths._();
- static const HOME = '/home';
- static const WELCOME = '/welcome';
- static const LOGIN = '/login';
- static const NODE = '/node';
- }
|