rootPageInstances property
List<StandardPageInterface<Object?, Object?> >
get
rootPageInstances
The root Navigator's current page instances.
Implementation
List<StandardPageInterface> get rootPageInstances {
assert(routerDelegate is StandardRouterDelegate);
final tDelegate = routerDelegate as StandardRouterDelegate;
return tDelegate.rootPageInstances;
}