popChildRoute method

void popChildRoute(
  1. int? tab
)

Implementation

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