pop method

void pop()

Go back in history.

Implementation

void pop() {
  if (canGoBack) {
    _currentPath = _history.removeLast();
    _currentParams = {};
    notifyListeners();
  }
}