pop method
Implementation
Future pop() async {
if (!await _validate(_routeStack.last)) {
return;
}
_routeStack.removeLast();
notifyListeners();
}
Future pop() async {
if (!await _validate(_routeStack.last)) {
return;
}
_routeStack.removeLast();
notifyListeners();
}