routeExists method

bool routeExists(
  1. String routeName
)

Implementation

bool routeExists(String routeName) {
  return _routeStack.any(
    (route) => route.settings.name == routeName,
  );
}