16 lines
529 B
Dart
16 lines
529 B
Dart
sealed class ChickenRoutes {
|
|
ChickenRoutes._();
|
|
|
|
static const _base = '/init';
|
|
static const init = '$_base/root';
|
|
static const home = '$_base/home';
|
|
static const buy = '$_base/buy';
|
|
|
|
static const enteringTheWarehouse = '$_base/enteringTheWarehouse';
|
|
static const salesInProvince = '$_base/SalesInProvincePage';
|
|
static const outOfProvince = '$_base/OutOfProvincePage';
|
|
|
|
static const salesOutOfProvince = '$outOfProvince/saleOutOfProvince';
|
|
static const buysOutOfProvince = '$outOfProvince/buyOutOfProvince';
|
|
}
|