lazyPutAsync<S> static method
Registers an asynchronous builder for lazy instantiation.
Use findAsync to retrieve the instance once the future completes.
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);
}