LRouteScope constructor

const LRouteScope({
  1. Key? key,
  2. LScopeDependencyFactory? dependencyFactory,
  3. required Widget child,
  4. String? name,
  5. List<Object?>? args,
})

Creates a route-bound dependency scope.

Implementation

const LRouteScope({
  super.key,
  this.dependencyFactory,
  required this.child,
  this.name,
  this.args,
});