pop method
void
pop()
Pop the top page off the GoRouter's page stack.
Implementation
void pop() {
assert(() {
log.info('popping $location');
return true;
}());
_routerDelegate.pop();
}
Pop the top page off the GoRouter's page stack.
void pop() {
assert(() {
log.info('popping $location');
return true;
}());
_routerDelegate.pop();
}