back method
Implementation
bool back({ScrollDirection direction = ScrollDirection.reverse}) {
if (currentFragment.canUndo.value) {
_hostState!._direction = direction;
currentFragment.historyUndo();
return true;
}
return false;
}
bool back({ScrollDirection direction = ScrollDirection.reverse}) {
if (currentFragment.canUndo.value) {
_hostState!._direction = direction;
currentFragment.historyUndo();
return true;
}
return false;
}