12 lines
361 B
Dart
12 lines
361 B
Dart
sealed class ChickenRoutes {
|
|
ChickenRoutes._();
|
|
static const _base = '/init';
|
|
static const init = '$_base/init';
|
|
static const home = '$_base/home';
|
|
|
|
static const enteringTheWarehouse = '$_base/enteringTheWarehouse';
|
|
static const salesInProvince = '$_base/SalesInProvincePage';
|
|
static const salesOutOfProvince = '$_base/SalesOutOfProvincePage';
|
|
|
|
}
|