RouteScopeProvider constructor

const RouteScopeProvider({
  1. Key? key,
  2. required Widget child,
  3. required RouteRecord<Widget> route,
  4. required RouteParams params,
  5. required HistoryLocation location,
  6. required URLSearchParams query,
  7. HistoryLocation? fromLocation,
})

Creates a route scope provider.

Implementation

const RouteScopeProvider({
  super.key,
  required super.child,
  required this.route,
  required this.params,
  required this.location,
  required this.query,
  this.fromLocation,
});