AirRoute constructor

AirRoute({
  1. required String path,
  2. required Widget builder(
    1. BuildContext context,
    2. GoRouterState state
    ),
  3. List<AirRoute> routes = const [],
  4. bool isShellRoute = false,
})

Implementation

AirRoute({
  required this.path,
  required this.builder,
  this.routes = const [],
  this.isShellRoute = false,
});