pop method

void pop()

Pops top state from stack

Implementation

void pop() {
  _stack.removeLast();
}