pop method

void pop()

pop

Implementation

void pop() {
  if (_pages.length > 1) {
    removeLastUri();
  } else {
    print('Cannot pop');
  }
}