pushRootRoute method
Implementation
bool pushRootRoute(AppRouteMatch? match, {int? tab, bool isPage = true}) {
if (match == null) return false;
final route = PendingRoute(match, isPage: isPage);
_rootRoutes.add(route);
_history.push(route.toHistory(currTab: tab));
notifyWithLimit();
return true;
}