lazyPut<S> static method
Registers a builder that will be executed only when the dependency is first requested.
Parameters:
Implementation
static void lazyPut<S>(S Function() builder,
{String? tag, bool permanent = false, bool isFactory = false}) {
currentScope.lazyPut<S>(builder,
tag: tag, permanent: permanent, isFactory: isFactory);
}