18 lines
487 B
Dart
18 lines
487 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 sale = '$_base/sale';
|
|
|
|
//buys
|
|
static const buysOutOfProvince = '$buy/buyOutOfProvince';
|
|
static const buysInProvince = '$buy/buyInProvince';
|
|
|
|
//sales
|
|
static const salesInProvince = '$sale/SalesInProvince';
|
|
static const salesOutOfProvince = '$sale/saleOutOfProvince';
|
|
}
|