Files
rasadyar_application/lib/presentation/routes/app_paths.dart

10 lines
232 B
Dart
Raw Normal View History

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