2025-06-03 23:26:38 +03:30
|
|
|
sealed class ChickenRoutes {
|
|
|
|
|
ChickenRoutes._();
|
2025-06-16 10:55:33 +03:30
|
|
|
|
2025-06-05 23:26:44 +03:30
|
|
|
static const _base = '/init';
|
|
|
|
|
static const init = '$_base/init';
|
2025-06-15 09:48:52 +03:30
|
|
|
static const home = '$_base/home';
|
2025-06-03 23:26:38 +03:30
|
|
|
|
2025-06-05 23:26:44 +03:30
|
|
|
static const enteringTheWarehouse = '$_base/enteringTheWarehouse';
|
2025-06-15 09:23:09 +03:30
|
|
|
static const salesInProvince = '$_base/SalesInProvincePage';
|
2025-06-16 10:55:33 +03:30
|
|
|
static const outOfProvince = '$_base/OutOfProvincePage';
|
2025-06-03 23:26:38 +03:30
|
|
|
|
2025-06-16 10:55:33 +03:30
|
|
|
static const salesOutOfProvince = '$outOfProvince/saleOutOfProvince';
|
|
|
|
|
static const buysOutOfProvince = '$outOfProvince/buyOutOfProvince';
|
2025-06-03 23:26:38 +03:30
|
|
|
}
|