nestedPageInstances property

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;
}