attachChildController method

void attachChildController(
  1. RoutingController childController
)

Adds the given controller to the list of childControllers

Implementation

void attachChildController(RoutingController childController) {
  assert(!_childControllers.contains(childController));
  _childControllers.add(childController);
}