pop method

  1. @action
void pop()

Pop the last page from the stack

Implementation

@action
void pop() {
  if (pages.length > 1) pages.removeLast();
}