back method

bool back({
  1. ScrollDirection direction = ScrollDirection.reverse,
})

Implementation

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