pageChildInstances property

Map<StandardPageInterface<Object?, Object?>, List<Page>> get pageChildInstances

Get a List of the actual pages of Page.

Implementation

Map<StandardPageInterface, List<Page<dynamic>>> get pageChildInstances {
  assert(routerDelegate is StandardRouterDelegate);
  final tDelegate = routerDelegate as StandardRouterDelegate;

  return tDelegate._pageChildInstances;
}