of static method

Looks up and casts the scoped Router to AutoRouterDelegate

Implementation

static AutoRouterDelegate of(BuildContext context) {
  final delegate = Router.of(context).routerDelegate;
  assert(delegate is AutoRouterDelegate);
  return delegate as AutoRouterDelegate;
}