rootDelegate property
FRouterDelegate
get
rootDelegate
Implementation
FRouterDelegate get rootDelegate {
FRouterDelegate delegate = this;
while (delegate.hasParent) {
delegate = delegate.parent!;
}
return delegate;
}