pop method

void pop(
  1. AppTabType? currentTab,
  2. bool global
)

Pops latest route from stack

Implementation

void pop(AppTabType? currentTab, bool global) {
  final stack = _getStack(global);

  return stack.pop(currentTab);
}