nestedStack property
Map<Key, List<NestedNomoPage> >
get
nestedStack
Implementation
Map<Key, List<NestedNomoPage>> get nestedStack => {
for (final nestedNav in _stack.whereType<NestedNavigatorPage>())
nestedNav.routeInfo.key: _stack
.whereType<NestedNomoPage>()
.where((nP) => nP.navKey == nestedNav.routeInfo.key)
.toList()
};