pop method

void pop()

Implementation

void pop() {
  if (navigationInteractor.isInGlobalStack()) {
    navigationInteractor.pop();
  } else if (screenTab == null) {
    navigationInteractor.pop();
  } else {
    navigationInteractor.popInTab(screenTab);
  }
}