global method

GoRouter global()

Implementation

GoRouter global() {
  if (context == null) {
    throw """You are trying to use contextless navigation!
    Please init Go.key first by using navigatorKey.""";
  }
  return GoRouter.of(context!);
}