systemPop abstract method

Future<void> systemPop({
  1. Map<String, String> pathParameters = const {},
  2. Map<String, String> queryParameters = const {},
  3. String? hash,
  4. Map<String, String> newHistoryState = const {},
})

Starts a systemPop cycle

systemPop cycle:

  1. onSystemPop is called in all VWidgetGuards
  2. onSystemPop is called in the nested-most VRouteElement of the current route
  3. onSystemPop is called in VRouter
  4. pop is called

In any of the above steps, we can use vRedirector if you want to redirect or stop the navigation

Implementation

Future<void> systemPop({
  Map<String, String> pathParameters = const {},
  Map<String, String> queryParameters = const {},
  String? hash,
  Map<String, String> newHistoryState = const {},
});