nextPath static method

void nextPath(
  1. String? path
)

The next URL

Implementation

static void nextPath(String? path) {
  _calledNextRoute = true;
  _currentConfiguration = AppRoutePath.page(path);
  _this!.notifyListeners();
  _calledNextRoute = false;
}