nestedPageInstances property
Map<StandardPageInterface<Object?, Object?> , List<StandardPageInterface<Object?, Object?> > >
get
nestedPageInstances
The current nested page instances within each navigator.
Returns a map where each key is a StandardPageInterface representing a navigator page,
and the corresponding value is a list of StandardPageInterface instances that are nested within that navigator.
Implementation
Map<StandardPageInterface, List<StandardPageInterface>>
get nestedPageInstances {
assert(routerDelegate is StandardRouterDelegate);
final tDelegate = routerDelegate as StandardRouterDelegate;
return tDelegate.nestedPageInstances;
}