pop method
Pops latest route from stack
Implementation
void pop(AppTabType? currentTab, bool global) {
final stack = _getStack(global);
return stack.pop(currentTab);
}
Pops latest route from stack
void pop(AppTabType? currentTab, bool global) {
final stack = _getStack(global);
return stack.pop(currentTab);
}