rootDelegate property

FRouterDelegate rootDelegate

Implementation

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