Files
rasadyar_application/lib/presentation/routes/app_paths.dart
2025-04-15 17:27:48 +03:30

11 lines
294 B
Dart

part of 'app_pages.dart';
sealed class AppPaths {
AppPaths._();
static const String splash = '/splash';
static const String authWithUserAndPass = '/authWithUserAndPass';
static const String authWithOtp = '/authWithOtp';
static const String systemDesignPage = '/systemDesignPage';
}