AppRouteScope constructor

const AppRouteScope({
  1. Key? key,
  2. required AppRouter router,
  3. required Widget child,
})

Implementation

const AppRouteScope({
  super.key,
  required this.router,
  required super.child,
});