LAsyncRouteScope constructor

const LAsyncRouteScope({
  1. Key? key,
  2. required LAsyncScopeDependencyFactory dependencyFactory,
  3. required Widget child,
  4. String? name,
  5. Widget loading(
    1. BuildContext context
    )?,
  6. Widget error(
    1. BuildContext context,
    2. Object error
    )?,
  7. List<Object?>? args,
})

Implementation

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