pop method

void pop()

Implementation

void pop() async {
  if (canPop()) {
    _pages.removeLast();
  }
  notify();
}