parent property
Attaches this node to a parent.
Called internally by SafeNestedRoute when registering child routes.
Implementation
@protected
set parent(RouteNode? parent) {
if (_parent != null) throw Exception();
_parent = parent;
}
Attaches this node to a parent.
Called internally by SafeNestedRoute when registering child routes.
@protected
set parent(RouteNode? parent) {
if (_parent != null) throw Exception();
_parent = parent;
}