attachChildController method
void
attachChildController(
- RoutingController childController
inherited
Adds the given controller to the list of childControllers
Implementation
void attachChildController(RoutingController childController) {
assert(!_childControllers.contains(childController));
_childControllers.add(childController);
}