callbackStackRemovePenultimate function

dynamic callbackStackRemovePenultimate()

Implementation

callbackStackRemovePenultimate(){
  if (_callbackStack.length > 2)
    _callbackStack.removeAt(_callbackStack.length-2);
  _debugPrintStack();
}