ShellRoutePaths constructor

const ShellRoutePaths({
  1. required String path,
  2. String? name,
  3. required Widget builder(
    1. BuildContext,
    2. GoRouterState,
    3. Widget
    ),
  4. String? description,
  5. GlobalKey<NavigatorState>? navigatorKey,
  6. bool isStateful = false,
})

Implementation

const ShellRoutePaths({
  required this.path,
  this.name,
  required this.builder,
  this.description,
  this.navigatorKey,
  this.isStateful = false,
});