Angular Dart passing data from route service into a controller
问题 I'm struggling to find a way to get data from my router into my controller. The enter method on the route is correctly grabbing the data from the service, as the print method shows the JSON response in the console. My Module looks like this: class MyAppModule extends Module { MyAppModule () { type(UsersService); type(UsersController); type(RouteInitializerFn, implementedBy: MyAppRouteInitializer); factory(NgRoutingUsePushState, (_) => new NgRoutingUsePushState.value(false)); } } and a