Files
rasadyar_application/packages/chicken/lib/features/jahad/presentation/routes/routes.dart

11 lines
338 B
Dart

sealed class JahadRoutes {
JahadRoutes._();
static const _base = '/chicken/jahad';
static const initJahad = '$_base/';
static const homeJahad = '$_base/home';
static const actionJahad = '$_base/action';
static const activeHatchingJahad = '$_base/activeHatching';
static const newInspectionJahad = '$_base/newInspection';
}