historyForward method

  1. @override
void historyForward()
override

Goes forward 1 in the url history

Throws an exception if this is not possible Use historyCanForward to know if this is possible

Implementation

@override
void historyForward() {
  stopRedirection();
  _redirectFunction = ({
    required VRouterDelegate vRouterDelegate,
    required VRouteElementNode vRouteElementNode,
  }) =>
      vRouterDelegate.historyForward();
}