levitLazyPut method
Registers this builder for lazy instantiation in the active LevitScope.
Parameters:
tag: Optional unique identifier for the instance.permanent: Iftrue, the registration survives a non-forced reset.isFactory: Iftrue, the builder is executed for everyfindcall.
Implementation
void levitLazyPut(
{String? tag, bool permanent = false, bool isFactory = false}) =>
Ls.lazyPut<T>(this, tag: tag, permanent: permanent, isFactory: isFactory);