popAndPushNamed method
Implementation
popAndPushNamed(String name) {
if (pages.length > 0) {
pages.removeLast();
}
pushNamed(name);
}
popAndPushNamed(String name) {
if (pages.length > 0) {
pages.removeLast();
}
pushNamed(name);
}