15 lines
494 B
Dart
15 lines
494 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 outOfProvince = '$_base/OutOfProvincePage';
|
|
|
|
static const salesOutOfProvince = '$outOfProvince/saleOutOfProvince';
|
|
static const buysOutOfProvince = '$outOfProvince/buyOutOfProvince';
|
|
}
|