LScopedView<T> constructor

const LScopedView<T>({
  1. Key? key,
  2. LScopeDependencyFactory? dependencyFactory,
  3. T? resolver(
    1. BuildContext context
    )?,
  4. Widget builder(
    1. BuildContext context,
    2. T controller
    )?,
  5. Widget orElse(
    1. BuildContext context
    )?,
  6. bool autoWatch = true,
  7. String? scopeName,
  8. List<Object?>? args,
})

Implementation

const LScopedView({
  super.key,
  this.dependencyFactory,
  super.resolver,
  super.builder,
  super.orElse,
  super.autoWatch = true,
  this.scopeName,
  super.args,
});