lazyPutAsync<S> static method
Registers an asynchronous lazy dependency builder.
Retrieve the instance using findAsync.
If permanent is true, registration survives a non-forced reset.
Scope dispose always force-clears permanents.
Implementation
static Future<S> Function() lazyPutAsync<S>(Future<S> Function() builder,
{String? tag, bool permanent = false, bool isFactory = false}) {
return Ls.lazyPutAsync<S>(builder,
tag: tag, permanent: permanent, isFactory: isFactory);
}