ExtendedNavigator<T extends RouterBase?> constructor

ExtendedNavigator<T extends RouterBase?>({
  1. T? router,
  2. String? name,
  3. String? initialRoute,
  4. RouteFactory? onUnknownRoute,
  5. Object? initialRouteArgs,
  6. GlobalKey<NavigatorState>? navigatorKey,
  7. List<NavigatorObserver> observers = const <NavigatorObserver>[],
  8. Key? key,
})

Implementation

ExtendedNavigator({
  this.router,
  this.name,
  this.initialRoute,
  this.onUnknownRoute,
  this.initialRouteArgs,
  this.navigatorKey,
  this.observers = const <NavigatorObserver>[],
  Key? key,
}) : super(key: key);