pop method
void
pop()
Go back in history.
Implementation
void pop() {
if (canGoBack) {
_currentPath = _history.removeLast();
_currentParams = {};
notifyListeners();
}
}
Go back in history.
void pop() {
if (canGoBack) {
_currentPath = _history.removeLast();
_currentParams = {};
notifyListeners();
}
}