path property
Implementation
String get path {
RouteNode node = this;
List<String> pathArray = [];
while(node.parent != null) {
pathArray.insert(0, node.key);
pathArray.insert(0, '/');
node = node.parent;
}
return pathArray.join();
}