popChildRoute method
Implementation
void popChildRoute(int? tab) {
final tabs = _tabRoutes.putIfAbsent(tab, () => []);
tabs.removeLast();
_history.pop();
notifyWithLimit();
}
void popChildRoute(int? tab) {
final tabs = _tabRoutes.putIfAbsent(tab, () => []);
tabs.removeLast();
_history.pop();
notifyWithLimit();
}