getRoutingPackage method
Implementation
String getRoutingPackage() {
final routingPackages = <String>[
GoRouterBrick().packageName,
GoRouterBuilderBrick().packageName,
CliBrick.none,
];
return _interact
.select(
prompt: 'Your favorite routing package',
options: routingPackages,
)
.selectd;
}