attachChildController method

void attachChildController(
  1. RoutingController childController
)

Implementation

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