popState method

ProcessorState? popState()

Pop the current state from the stack.

Implementation

ProcessorState? popState() {
  return _stateStack.isNotEmpty ? _stateStack.removeLast() : null;
}