dynamic goToDefault(
[Map params]
)

Go to the default Page

Source

/// Go to the default Page
@reflectable
static goToDefault([Map params]) {
  if (params == null) {
    params = new Map();
  }
  if (defaultPathName != null) {
    router.go(defaultPathName, params);
  }
}