forward method
Implementation
bool forward({ScrollDirection direction = ScrollDirection.forward}) {
if (currentFragment.canRedo.value) {
_hostState!._direction = direction;
currentFragment.historyRedo();
return true;
}
return false;
}