rootRouter property

AppRouter rootRouter

Get the root AppRouter.

Page transitions can be performed directly by executing AppRouter.push, AppRouter.replace, or AppRouter.pop.

ルートのAppRouterを取得します。

AppRouter.pushAppRouter.replaceAppRouter.popを実行することでページ遷移を直接行うことが可能です。

Implementation

AppRouter get rootRouter {
  return AppRouter.of(this, root: true);
}