removeChild method

void removeChild(
  1. RouteNode child
)

Removes a child node.

Implementation

void removeChild(RouteNode child) {
  children.remove(child);
}