scopeProviderProvided<S> method

Scope Function() scopeProviderProvided<S>({
  1. dynamic qualifier,
})

Returns a function that can later be used to obtain a new scope that provides a dependency with the type S which is automatically created at the time of the new scope's creation using a provider from the current scope.

Implementation

Scope Function() scopeProviderProvided<S>({dynamic qualifier}) =>
    () => scopeProvided<S>(qualifier: qualifier);