String name,
[Map params]
) [Map params]
Go to the page corresponding to the name
Source
/// Go to the page corresponding to the name
@reflectable
static goToName(String name, [Map params]) {
if (params == null) {
params = new Map();
}
router.go(name, params);
}