key property

Implementation

GlobalKey<NavigatorState> get key {
  if (config.routerConfig != null) {
    return config.navigatorKey ?? _fallbackKey;
  }
  if (config.routerDelegate == null) {
    return config.navigatorKey ?? _fallbackKey;
  }
  return config.navigatorKey ?? rootDelegate.navigatorKey;
}