popState method
Pop the current state from the stack.
Implementation
ProcessorState? popState() {
return _stateStack.isNotEmpty ? _stateStack.removeLast() : null;
}
Pop the current state from the stack.
ProcessorState? popState() {
return _stateStack.isNotEmpty ? _stateStack.removeLast() : null;
}